回送MongoDb文本搜索返回空数组

时间:2018-12-17 19:36:57

标签: mongodb mongodb-query loopbackjs

我在搜索结果中得到了空数组。你知道出什么问题吗?

我有这样的收藏

{
    "description": "xxxx",
    "id": "5c11f7a00d12b470d915e609"
},

我在上面创建了一个文本索引

db.Task.createIndex({ "$**": "text" })

并像这样查询它

{ "where": { "$text": { "search": "x"} } }

但是我得到的只是一个空数组。

这是数据源配置

"db": {
    "url": "mongodb://user:passwd@ds123584.mlab.com:23584/ev",
    "password": "password",
    "name": "db",
    "user": "user",
    "connector": "mongodb",
    "allowExtendedOperators": true
  },

0 个答案:

没有答案