我正在学习如何形成角度js,并看到了关于必填字段的这个例子。 http://angular-formly.com/#/example/other/toggle-required
但我真的不明白ng-messages="fc.$error"
。为什么是fc.$error
? fc来自哪里?我将fc
更改为任何其他名称,然后它停止工作....
答案 0 :(得分:3)
fc
是options.formControl
的快捷方式。见the docs。 formControl
是NgModelController
的字段实例,$error
来自ngMessages,这就是adapter plugin manager期待的内容。这就是为什么传递任何其他东西停止工作。