用于table.where对象的javascript中的运算符

时间:2015-11-21 05:48:27

标签: javascript arrays

不确定我是否正确标题,如果没有让我们纠正它。我遇到的问题是从表中过滤数据时我希望能够比较一个int并确定它是否小于另一个int。到目前为止,我已经搜索了谷歌上的所有内容,并发现无法找到任何可行的内容。

这是我的代码。

var mytable = tables.getTable('Table');
mytable.where({ numbertocompare : 10 }).read(
{

我正在尝试这样做。

var mytable = tables.getTable('Table');
mytable.where({ numbertocompare < 10 }).read(
{

注意&lt;而是

这是在javascript后端为天蓝色移动服务完成的。

1 个答案:

答案 0 :(得分:1)

您可以传入函数而不是对象。

mytable.where(function () {
    //this points to the row
    //use this.columnName to access column values
    return this.numbertocompare < 10;
})

请参阅docs