2

我的任务是通过给定的 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不支持函数,那么如何制作“字段 IN 数组”样式过滤器?我可以将数组mssql.query(sql, params, options)作为查询参数传递吗?

PS:我真的不想从给定的数组中手动​​构建 where 表达式。

4

1 回答 1

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 中看到的那样。

于 2013-03-18T01:55:18.137 回答