#直接创建
db.slope_2022_market.createIndex( { searchTerm: "text", description: "text" } );
db.slope_2022_market.getIndexes();
匹配的效果并不好
#删除创建的索引-找到对应的索引名称
> db.slope_2022_market.dropIndex('searchTerm_text_description_text' );
重新创建
`db.slope_2022_market.createIndex( { searchTerm : "text" }
);`
并没有匹配到想要的结果