我正在使用loopback爲我的應用程序提供api服務,並試圖更改某些數據的GET請求。loopback查找()「where」子句不返回預期結果
截至目前查詢獲取所有特定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' }}
嘗試。無論我把報價放在哪裏,結果都是整個套餐。我如何查詢我感興趣的結果?
在此先感謝
這是在前端完成,已編程的端點和掛鉤。 – mnemosdev