标签: java json mongodb
我想使用mongoDB的$not运算符作为Not Contains with String。 但它不起作用,因为Json对象中的最终查询条件是:
$not
String
{"Category":{"$not":"/Mobile/"}}
我认为它应该是:- {"Category":{"$not":/Mobile/}}
- {"Category":{"$not":/Mobile/}}
那我怎么解决这个问题呢? $not运算符的值如果包含在""中,则不会获取任何数据。 。 请帮忙。