0
我想從JSON文件加載圖像到我的離子應用程序。從JSON文件加載圖像
我可以從JSON文件加載消息/字符串,但無法讓圖像正常工作。
我創建了一個codepen:
http://codepen.io/beefman/pen/aOpKgL?embed-id=15603
HTML:
<img class="full-image" ng-src="{{item.source}}">
Javscript:
.controller('announcementCtrl', function($scope, $http) {
$scope.data = [];
$scope.infiniteLimit = 1;
$scope.doRefresh = function() {
$http.get('')
.success(function(data) {
$scope.data = data;
$scope.$broadcast('scroll.refreshComplete');
})
.error(function() {
$scope.data = [];
$scope.$broadcast('scroll.refreshComplete');
});
}
謝謝,它仍然不顯示圖像。有任何想法嗎? :/ – smither123
我很確定它在JSON文件中有一些事情要做。在某個點之後,它會停止讓我參考。 – smither123
之後:「條款」:[ ],它停止工作的一部分。 – smither123