我使用的是角度2 RC5 "@angular/core": "2.0.0-rc.5"
"@angular/forms": "0.3.0"
我正在使用下面的单选按钮
<input type="radio" name="option" [value]="true" [(ngModel)]="option.checked">
但是当我运行时,我收到以下错误
No provider for RadioControlRegistry
。这有什么问题?
是我的app.module
@NgModule({
imports: [
BrowserModule,
FormsModule,
routing,
HttpModule,
JsonpModule
]
....