目前正在處理angularjs,我試圖從JSON文件獲取數據,並以Ul格式顯示結果。當我搜索在SO我發現這個link我試圖做同樣的,但我仍沒有得到通過http不工作的Json響應
這就是我想在這裏控制器
'use strict';
var app = angular.module('myApp', []);
app.controller('MyController', function($scope, $http){
$http.get('sample.json').then(function (response){
$scope.items = response.data.countries;
});
});
HTML代碼
<body ng-app="myApp">
<div ng-controller="MyController">
<ul>
<li ng-repeat="(key, value) in items" {{key}}>
</li>
</ul>
</div>
</body>
這裏是我的plunker請幫助我在這裏做錯了
你寫'{{key}}'屬性裏面的標籤 – aseferov