我的任务是通过给定的ID列表从deviceTokens
表中查询clientDevices
。然后向该客户发送推送通知。
我通过将以下数据插入pushRequests
表来获取ID列表:
{
"alert": "Hello customer!",
"badge": 1,
"recipients": [2, 4, 5]
}
我写了这个服务器端插入函数:
function insert(item, user, request) {
if (item.recipients) {
tables.getTable('clientDevices').where(function(ids) {
return (ids.indexOf(this.id) > -1)
}, item.recipients).read({
success: function(results) {
// . . .
// Send push notifications to this guys
// . . .
}
})
item.recipients = JSON.stringify(item.recipients)
}
request.execute()
}
但是我得到一个奇怪的错误:
Error in script '/table/pushRequests.insert.js'. Error: The expression 'ids.indexOf(this.id)'' is not supported.
如果不支持indexOf
功能,那么如何制作“field IN array”样式过滤器?我可以将数组作为查询参数传递给mssql.query(sql, params, options)
吗?
PS:我真的不想手动构建给定数组中的expresion。
答案 0 :(得分:8)
您可以使用带有in运算符的JS的Mobile Services LINQ样式语法,例如:
// find all TodoItem records with id = 2 or 3
var todos = tables.getTable("TodoItem");
todos.where(function(arr) {
return this.id in arr;
}, [2, 3]).read({
success: console.log(results);
});
语法为:
table.where(function, parameters).read(options);
其中函数类似于通过比较当前行(this)上的属性返回true或false的lambda。一个奇怪的事情是参数必须在函数签名上指定为参数并单独传递,如上面的2和3所示。