假设架构是:
var Rows = mongoose.model('Rows', {
row1: String,
row2: String
});
我将如何随机查询其中一行?例如:
var rand = Math.floor(Math.rand() * 2);
Rows.find({ "row" + rand: "sup" }, function (err, result) {
if (err) {
console.log(err);
}
console.log(result);
});
此代码出错SyntaxError: Unexpected token +