我的查询使用Restangular时出错,但没有返回我的过滤数据。我已经尝试了以下所有内容:
$scope.welcomes = Restangular.all("projects").getList({'name': "g"}).$object;
$scope.welcomes = Restangular.all("projects").customGET("findOne", {"filter[where][title]": "g"});
$scope.welcomes = Restangular.one("projects").customGET({name: "g"});
$scope.welcomes = Restangular.all("projects").customGET({name: "g"});
如果您有任何建议可以分享,我真的很感激。
答案 0 :(得分:0)
Restangular返回数据作为回调函数中的参数,示例:
Restangular.one('user', $stateParams.id).get().then(function(response) {
vm.users = response.data;
// console.log('response.status:' + response.status);
});
我希望这可以帮到你,或者你改进了问题,我会回来的