有没有反正我可以绑定两个模型到一个输入字段?假设我有输入字段,我想成为范围内的两个变量的值类似:
<input type="text" model="sn_number; id" >
你不能,但有一些解决方法。
原文链接:https://www.f2er.com/angularjs/146624.html1.使用ngChange更新其他模型
<input type="text" ng-model="sn_number" ng-change="id=sn_number"/>
你可以看一个模型,当在变化,更新另一个
$scope.$watch('sn_number',function(v){ $scope.id = v; });
如果要保持同步,您还需要观察id的更改。