accountModel.update({},{$set: {spotQuestions: "false"}},{ multi: true },function (err,raw) {
if (err) return handleError(err);
console.log('The raw response from Mongo was ',raw);
})
不加回调不行。
accountModel.update({},{$set: {spotQuestions: "false"}},{ multi: true },function (err,raw) {
if (err) return handleError(err);
console.log('The raw response from Mongo was ',raw);
})
不加回调不行。