是否可以从模板html中的组件属性设置Template reference variable
?
例如:
export class TestComponent {
private uniqueID : string; // set randomly
}
并在HTML中使用它吗?
<input #uniqueID="ngModel">
<div [hidden]="['uniqueID'].valid || ['uniqueID'].pristine"></div>
我希望能够从我的组件设置模板引用变量,因为输入是在ngFor
中多次进行的(因此跟踪状态可能会导致问题)。有什么建议吗?