为ChildComponent添加动态html属性

问题描述 投票:0回答:1

我想在html中的

ChildComponent
中添加动态html属性,例如hits:

<child-component test={{ variable }}></child.component>

我不想将其用作输入,只需要在 html 中进行测试。 我尝试了上述方法,但是当我这样做时出现错误:

"Can't bind to 'test' since it isn't a known property"

谢谢!

html angular tags html-tag-details
1个回答
1
投票

您可以使用

attr
来创建属性!

<child-component [attr.test]="variable"></child.component>
© www.soinside.com 2019 - 2024. All rights reserved.