我使用ng-options从下拉
菜单中选择值。我想能够将旧值与新值进行比较。 ng-change适用于抓取下拉的新值,但是如何获得新值和原始值?
<select ng-change="updateValue(user)" ng-model="user.id" ng-options="user.id as user.name for user in users"></select>
例如,假设我想让控制器记录,“你的前user.name是BILL,你当前的用户名是PHILLIPE。
使用angular {{expression}},您可以将旧
用户或user.id值作为
文字字符串
添加到ng-change
属性:
<select ng-change="updateValue(user,'{{user.id}}')"
ng-model="user.id" ng-options="user.id as user.name for user in users">
</select>
在ngChange上,updateValue的第一个参数将是新的用户值,第二个参数将是上次用angular更新select-tag时生成的文字,并使用旧的user.id值。