我在搜索结果中得到了空数组。你知道出什么问题吗?
我有这样的收藏
{
"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
},