您正在生成
{$text:{abc:"efg"}},但查询应如下所示: {$text:{$search:"efg"}}因此,尝试将代码更新为:
c.EnsureIndexKey("abc")c.Find(bson.M{"$text": bson.M{"$search": "efg"}})请记住,要使用搜索
$text,您需要指定一个索引。查阅说明如何使用该文档的文档:http
:
//docs.mongodb.org/manual/reference/operator/query/text/



