角度 |为子组件添加动态 html 属性

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

我想在 html 中向我的子组件添加一个动态 html 属性,例如命中:

<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个回答
0
投票

您可以使用

attr
来创建属性!

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