0
我使用loopback的框架來生成我的API。現在,我正在嘗試編寫一個自定義的「RemoteMethod」,它需要一個很長的數字(例如1466598625506等unix格式的時間戳),並返回一個Sync對象數組(我正在使用retrofit來與端點交流)。在我的android應用程序中,當我調用結束點「getRecodsAfterTimestamp」時,它應該返回記錄的時間戳值等於或大於請求中提供的值。它返回的是所有記錄(此時爲3)。環回遠程方法不能返回正確的值
這是我的模型(sync.json)稱爲同步的樣子:
{
"name": "Sync",
"base": "PersistedModel",
"idInjection": true,
"options": {
"validateUpsert": true
},
"properties": {
"uuid": {
"type": "string"
},
"table": {
"type": "string"
},
"action": {
"type": "string"
},
"timeChanged": {
"type": "number"
}
},
"validations": [],
"relations": {},
"acls": [],
"methods": {}
}
這是我sync.js與遠程方法是這樣的:
module.exports = function(Sync) {
Sync.getRecodsAfterTimestamp = function(timestamp, cb){
// var response;
Sync.find({where:{ or: [
{timeChanged:timestamp},
{timeChanged: {gt:timestamp } }
] }}, function(err, sync) {
cb(null,sync);
// response.push(sync);
});
// cb(null, response);
}
Sync.remoteMethod (
'getRecodsAfterTimestamp',
{
http: {path: '/getRecodsAfterTimestamp', verb: 'get'},
accepts: {arg: 'timeChanged', type: 'number', http: { source: 'query' } },
returns: {
arg: 'data',
type: 'array',
root: true
}
}
);
};
我不知道如果它很重要,但這是我的改造方法聲明:
@GET("Syncs")
Call<List<Sync>> getAllSyncsAfterThisTimeStamp(@Query(("getRecodsAfterTimestamp?timeChanged=")) long timeChanged);
而我在這裏調用它:
Long timeStamp = 1466598625506L;
Log.e(TAG, "Job Service task is running...");
getAllSyncsCall = espcService.getAllSyncsAfterThisTimeStamp(timeStamp);
getAllSyncsCall.enqueue(EspcJobSheculerService.this);
這不是我想要的結果。它應該在1466598625506
之後返回所有記錄,這是僅兩條記錄。