可以通过以下两种方式之一将纯字符串值绑定到组件的@Input
属性中:Angular
<my-component inputProperty="my-property-value"></my-component>
或者:
<my-component [inputProperty]="'my-property-value'"></my-component>
他们中的一个通常比另一个更受欢迎吗?(有例外吗?)
是否有关于此的一般约定?这在任何 Angular 风格指南中都有解决吗(在官方风格指南
中找不到任何内容)。