大家好我已经在mongo db中创建了一个游标来查找下面显示的条件
var mycursor = db.catalog.find({})
mycursor.forEach(function(x)
{if(x.book.find({"publisher":{"$exists":true ,"$ne" : ""}})
{print("Publisher","Empty", " publishes book ",
x.book.title, "published at", x.book.publish_date)}})
我希望我的功能是找到所有值为“”的发布者,然后分别打印值我知道我的if语句是不正确的我只是觉得如果有人可以点我怎么写一个这个案例我正确的方向我将不胜感激