Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有非常大的表单(约 500 个控件)并希望在其上集成 AngularJS。我有一个问题,当我设置ng-model属性时,它会重置我的value属性。
ng-model
value
有没有办法从输入值属性(文本区域和选择)自动设置模型值,而不会弄乱控制器代码?
您可以使用“ng-init”
<input ng-model="data.instructions" ng-init="data.instructions='bla bla'">
但是,推荐的方法是使用控制器。
希望能帮助到你。