我想在 html 中向我的子组件添加一个动态 html 属性,例如命中:
<child-component test={{ variable }}></child.component>
我不想将其用作输入,只需要在 html 中进行测试。 我尝试了上述方法,但是当我这样做时出现错误:
"Can't bind to 'test' since it isn't a known property"
有什么好的解决办法吗?
谢谢!
您可以使用
attr
来创建属性!
<child-component [attr.test]="variable"></child.component>