Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

angular - Custom component binding: No value accessor for ''

I updated my form with a custom element to @angular/forms as of RC2. When I perform an input binding on it using [(ngModel)]="myModel", I get No value accessor for '' from angular and the form fails to load. The error only occurs with input binding.

Here's a plunker illustrating the issue: https://plnkr.co/edit/wxMsGuxr3GHMwNNoczT7?p=preview

The value accessor is generally working (and the model did with the old forms stuff in RC1) because the FormBuilder has an initial value which is correctly set through the accessor interface.

The issue seems similar to https://github.com/angular/angular/issues/7518 but the form directives are provided in the bootstrap code:

provideForms(),
{
    provide: PLATFORM_DIRECTIVES,
    useValue: [REACTIVE_FORM_DIRECTIVES],
    multi: true
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You are missing disableDeprecatedForms() in the call to bootstrap. See here: https://plnkr.co/edit/tk1rWdmXB7umkGPYK4Ho?p=preview


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...