我有以下html。
<div ng-controller="CustCtrl">
<table class="table table-condensed">
<thead>
etc.
</thead>
<tbody>
<tr ng-repeat="customer in customers" data-cust-id="{{customer.Id}}">
<td>
<button ng-model="Id" tracking-{{customer.Tracking}} ng-click="startTrackingCustById(customer.Id)">
</button>
</td>
etc.
</tr>
</tbody>
</table>
所以按钮有一个类,它是数据绑定到 customer.Tracking 值的,它是真或假。单击按钮时,成功调用 startTrackingCustById() 方法并成功更改客户对象中的客户对象,如 customer.Tracking = true。
但是按钮类没有更新。我错过了什么?