在where子句中使用两个字段时出现Mongoose强制转换问题

时间:2013-03-31 10:37:30

标签: javascript node.js mongodb mongoose

我仍然试图绕过mongoDB / mongoose并且无法解决以下查询的问题;

Link
  .find()
  .where('active').equals(true)
  .where('access_count').gt(0).lte('access_limit')
  .limit(5)
  .sort('-created')
  .exec(function(err,latest)

返回以下演员错误;

CastError: Cast to number failed for value "access_limit" at path "access_count"
at SchemaNumber.cast 

这是由.where('access_count')引起的.gt(0).lte('access_limit')我认为这是由于文档中两个字段的比较?有没有正确的方法来做这个以及调试这些问题的任何建议?

作为参考,架构定义为;

var LinkSchema = new Schema({
 token: {type: String, unique: true, index: true, required: true }
 , title: {type: String}
 , url: {type: String, required: true}
 , active: {type: Boolean, default: true}
 , created: {type: Date, default: Date.now}
 , access_count: {type: Number, default: 0}
 , access_expiry: Date
 , access_limit: {type: Number, default: 0}
}) 

1 个答案:

答案 0 :(得分:3)

要在查询中将一个字段与另一个字段进行比较,您必须使用$where子句:

Link
  .find()
  .where('active').equals(true)
  .where('access_count').gt(0)
  .$where('this.access_count <= this.access_limit')
  .limit(5)
  .sort('-created')
  .exec(function(err,latest)

$where可能会很慢,因此请使用正常的where子句尽可能减少$where需要执行的文档数量。