我在控制器中獲取數據如下 $ scope.healthData = []; //聲明一個空數組需要顯示我的表中的angularjs數據
$scope.init = function(){
console.log("before function");
$http({
method: 'GET',
url: ''
}).then(function successCallback(response) {
$scope.healthData = angular.toJson(response.data);
}, function errorCallback(response) {
alert("Trouble grabbing requested data.")
});
}
,我試圖在下文我的JSP頁面來顯示我的數據: {{x.name}}
<td>{{ x.componentStatus }}</td>
但我得到以下錯誤在控制檯: 錯誤:[ngRepeat:愚弄] http://errors.angularjs.org/1.5.8/ngRepeat/dupes?p0=x%20in%20healthData&p1=string%3A%22&p2=%22 在angular.min.js:6
at XMLHttpRequest.t.onload (angular.min.js:103)
誰能幫我?
請按照[白兔](https://docs.angularjs.org/error/ngRepeat/dupes?p0=x%20in%20healthData&p1=string:%22&p2=%22) –
您在模型中有重複項'試圖綁定,而你沒有正確管理它們。關於這個話題有很多信息。只要搜索錯誤。 –
試過這個。沒有運氣。錯誤消失了,但是數據沒有顯示 – rashmy