我想在html中的
ChildComponent
中添加动态html属性,例如hits:
<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>