2
私はangularjs
を初めて使っています。私はそれを学びたいと考えています。 Ajax $http service
のための小さな練習アプリで働いている間、私は以下のエラーを受けました。以下は私が使ったコードです。
<script type="text/javascript">
var app=angular.module("angulardata",[]);
app.controller("angulardata",["$scope","$http",function($scope,$http)
{
$http.get('employee.json').then(function(response){
$scope.employees=response;
});
}]);
</script>
</head>
<body ng-app="angulardata" ng-controller="angulardata">
<h2>Employee Data</h2>
<table>
<tr ng-repeat="emp in employees">
<td>{{emp.firstname}}</td>
<td>{{emp.lastname}}</td>
<td>{{emp.Age}}</td>
<td>{{emp.salary}}</td>
</tr>
</table>
あなたは確かURLですjsonファイルには正しいですか? –
'$ scope.employees = response;'は '$ scope.employees = response.data; 'でなければなりません。また、' .json' URLをダブルチェックしてください。 –
あなたのファイルが有効なjson –