GoInstant:用$goQuery匹配单个数组元素



是否有可能通过GoInstant GoAngular的单个数组元素查询一个数组值的键?例如,如果查询具有以下键/属性的项目列表,我可以只选择属于单个用户的项目吗?

item: {
    name: 'Item name',
    description: 'A longer description of the item and its details',
    category: 'Business',
    user_ids: [1,3,7,15]  //This is an array of user id's because items
                          //have a many-to-many relationship with users
}

我尝试了这个查询,但它没有返回任何东西:

var queryResults = $goQuery('items', { user_ids: 1 }, { limit: 10 }).$sync();

我相信这是根据MongoDB文档正确的语法,但我不确定GoInstant是否已经实现了这个操作符。

这应该像你期望的那样工作,这绝对是一个bug!请保持关注,我将更新这个答案一旦它被修复。

相关内容

  • 没有找到相关文章

最新更新