以下是一些答案:
但是,我没有尝试在多种情况下成功,使用mongoose。
例如:
架构:
var data = new Schema({
price:{type: String},
productnumber:{type: String},
});
操作:
thedata.find({
"price":"this.price> 30.00",
"productnumber": "this.productnumber >= 100"
},function(err, result) {
});
或
thedata.find({
"this.price> 30.00",
"this.productnumber >= 100"
},function(err, result) {
});
这些操作不正确..,我该如何设置?
*我无法重置数据类型,架构不是我的设计,系统是在线工作......