0
我正在向php頁面上的查詢提交表單並返回一個數據表。如果我不提交參數,這很好。但是,如果我嘗試向帖子添加參數(在查詢中使用),我收到一個ngRepeat:Dupes錯誤。ngRepeat:使用角度發佈數據時的錯誤
任何想法可能會導致這種情況?還是比較新的角度
$http.post(url ,// Application module
var reportRequest = angular.module('reportRequest',[]);
reportRequest.controller('reportRequest', function($scope, $http) {
// create a blank object to handle form data.
$scope.report = {};
// calling our submit function.
$scope.submitForm = function() {
// Posting data to php file
$http.post(url, {
"selectPerson" : $scope.report.firstname
}).success(function(data){
// Stored the returned data into scope
$scope.people= data;
console.log(data);
});
};
});
<table class="table table-hover">
<tr>
<th>First Name</th>
<th></th>
<th></th>
</tr>
<tr ng-repeat="person in people track by $index | filter:search_query">
<td><span>{{person.firstname}}</span></td>
</tr>
</table>
當您發佈的數據?我的意思是這個事件。 –
你可以發佈更多的代碼或plunker。 – SaiUnique
正在調用該功能點擊按鈕 – dallas