我正在使用环回为我的应用程序提供 API,并尝试更改某些数据的 GET 请求。
截至目前,查询获取特定 API 的所有结果:
People.find({
where: {
'town': 'name of a town'
}
}).$promise
// Promise is fulfilled and people returned
.then(function(results) {
$scope.people = results;
})
// Promise is rejected and error catched
.catch(function(err) {
$scope.errors.PeopleFind = JSON.stringify(err.data.error.message ?
err.data.error.message :
err.data.error.errmsg
);
});
我已经尝试在 where 子句中添加单引号或执行类似.find({ where : { town : 'name of a town' }}
.
无论我把引号放在哪里,结果总是整个包。我将如何查询我感兴趣的结果?
提前致谢