我正在尝试实现一个自定义ControlValueAccessor,就像Kara Erickson在最后一个Angular Connect https://youtu.be/CD_t3m2WMM8?t=20m22s上推荐的那样。将有效状态从父组件传递给子组件。
app.component.html:
<app-country-select ngModel="model" name="country-select"></app-country-select>
国家select.component.html:
<select [formControl]="controlDir.control" #select placeholder="Country" i18n-placeholder (click)="onTouched()"
(change)="onChange($event.value)" [required]="required">
<option value="at">Austria</option>
<option value="au">Australia</option>
</select>
国家select.component.ts:
@Component({
selector: 'app-country-select',
templateUrl: './country-select.component.html',
styleUrls: ['./country-select.component.scss'],
})
export class CountrySelectComponent implements ControlValueAccessor {
@Input() required = false;
@ViewChild('select') select: HTMLSelectElement;
onChange: (value: any) => void;
onTouched: () => void;
constructor(@Self() public controlDir: NgControl) {
controlDir.valueAccessor = this;
}
...
}
完整的代码存在于此处:https://github.com/maksymzav/ngcontrol。
在JIT模式下运行代码时,代码运行正常。我想因为在运行时它确实知道它使用了哪个控件:NgModel,或FormControlName,或FormControlDirective。
但是,当我使用ng build --prod
运行AOT构建时,它会失败并显示消息
错误输入:没有NgControl的提供者(“[错误 - &gt;]&lt; app-country-select&gt;&lt; / app-country-select&gt;”)
有谁知道如何使这个版本成功?谢谢。
答案 0 :(得分:5)
您可以将@Optional()
装饰器添加到controlDir
。
将依赖项标记为可选的参数元数据。注射器 如果找不到依赖项,则提供null。
就我而言,这解决了&#34;没有提供商&#34;错误,我能够成功编译项目。
示例:
constructor(
@Optional() // Add this decorator
@Self()
public controlDir: NgControl,
private stripe: StripeService,
private cd: ChangeDetectorRef
) {
// Better to add some checks here since controlDir can be null
if (controlDir) {
controlDir.valueAccessor = this;
}
}