0

我的代码看起来像这样

Cloud.Events.query({
            where: {
            tags : {'$in': ['movie','netflix']}

        }   

        }, function (e) {//continues

在 arrowdb 后端,我已经推送了值以使事件的标签看起来像[" ","movie","netflix"]. 它不接这个事件。我正在使用 Titanium SDK 语法。

4

1 回答 1

-1

过去我也遇到过一些麻烦。

我用语法解决了它。

最后,我找到了一个解决方案,例如:

var where = null

where.tags = {
    '$in': [your array]
};

Cloud.Events.query({
    where: where
}, function (e) {});

我希望它对你有帮助。

于 2016-02-06T22:16:46.650 回答