Are you referring to data binding for each record of the list? Data binding for each piece of data is unrealistic and meaningless. If you want to operate each record, you can directly bind a function to the record and pass the primary key of the record to the backend. For example, if you want to click on a certain record to generate an action, you can directly click on
<ul ng-repeat="item in list">
<li>{{iteam.address}}</li>
<li>{{item.phone}}</li> ...
<li ng-click='doSth(item.key,$event)'>操作</li>
</ul>
<ul ng-repeat="item in list">
<li>{{iteam.address}}</li>
<li>{{item.phone}}</li>
...
</ul>
Are you referring to data binding for each record of the list? Data binding for each piece of data is unrealistic and meaningless. If you want to operate each record, you can directly bind a function to the record and pass the primary key of the record to the backend. For example, if you want to click on a certain record to generate an action, you can directly click on