Angular ng-repeat

<div class="storeList curli" ng-repeat="x in storeList">{{ x.count(mid) }}</div>
//js
$scope.storeList = res.group;

data:

clipboard.png

Does it have something to do with the fact that

can cycle out three div, but can"t display the content of count (mid)?

Feb.28,2021

answer your own question. After some search, it has been solved:

<div class="storeList curli" ng-repeat="x in storeList">{{ x["count(mid)"] }}</div>
The

parameter has () or uses .key.

Menu