我正在使用Angular 6.0.8版
我有一个autoid
指令,该指令读取name属性并将id属性设置为其所应用的元素。
这是读取名称属性的代码
ngAfterViewInit() {
let nameAttribute = this.elRef.nativeElement.attributes["name"];
if (!nameAttribute) {
console.error("value of name attribute is not set", this.elRef.nativeElement);
}
}
以下是用法示例:
<myapp-dimension-select [(ngModel)]="model.ParentDepartmentId"
name="parent"
autoid>
</myapp-dimension-select>
此代码在开发人员模式下可以正常工作,但是当我使用--prod
进行构建时会报告错误。
我找不到引起问题的原因。