我正在开发一个小型学校项目申请。我从这样的API获取数据:
$http({
method: 'GET',
url: 'http://nightee.dev/stores/' + position.coords.latitude + '/' + position.coords.longitude,
}).then(function successCallback(response) {
$scope.stores = response.data;
console.log($scope.stores);
}, function errorCallback(response) {
console.log(response);
});
我希望将其填入离子列表
<ion-list>
<ion-item class="item-thumbnail-left ng-repeat="store in stores" ui-sref="/store/{{store.url}}">
<img ng-src="img/location-pin.svg" />
<h2>{{store.name}}</h2>
<p>{{store.distance}}</p>
</ion-item>
</ion-list>
但是视图上没有任何显示,你知道为什么吗?我的语法错了吗?
先谢谢你的帮助!!