新手关于mongoose问题 通过“sort_id”条件查询不到数据
在mongo shell查询db.posts.find({‘sort_id’:2})是有数据的:
{ "_id" : ObjectId("5327357e38469e4c7ee21503"),"sort_id":2,"title":"测试"}
node中通过mongoose查询没有数据返回
Model.find({‘sort_id’:2})[]
换一个查询方式
Model.find({‘title’:‘测试’})正常返回数据:
{ "_id" : ObjectId("5327357e38469e4c7ee21503"),"sort_id":2,"title":"测试"}
大家有没有遇到这种问题?求解