我使用loopback的框架来生成我的API。现在,我正在尝试编写一个自定义" RemoteMethod"这将需要一个长数字(unix格式的时间戳,如1466598625506)并返回一个同步对象数组(我正在使用改进与端点通信)。在我的Android应用程序中,当我调用终点" getRecodsAfterTimestamp"它应该返回与请求中提供的值相等或更大的timeStamp值的记录。它返回的是所有记录(目前3个)。
这就是我的名为Sync的模型(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
之后返回所有记录,这只是两个记录。
答案 0 :(得分:1)
您的查询是正确的。
签入find
回调你是否正确输出