我Angular
在我的应用程序中使用路由以及ngTable
. 我的一个页面包含一个ngTable
, 和一个搜索表单,每次搜索时数据都来自使用GET方法 (MongoDB) 的数据库,所以每次搜索时ngTable
(table) 都应该更新,我的问题是表是第一次加载页面后仅更新一次。
用于部分页面的控制器:
app.controller('SearchController',function($scope,ngTableParams,$http,$filter, $sce){
$scope.searching=function(){
var str = $scope.search.tags;
var TagsArry = str.split(",");
$http.get('/api/GetDoc',{params:{title:$scope.search.title,tags:$scope.search.tags}})
.success(function(data)
{
if(data.notExist!=-1){
$scope.tableParams = new ngTableParams({
page: 1, // show first page
count: 10 // count per page
}, {
total: data.length, // length of data
getData: function($defer, params) {
$defer.resolve(data.slice((params.page() - 1) * params.count(), params.page() * params.count()));
}
});
}
})
.error(function(err){
});
}
});