Mongoose:Coffeescript 中的递归嵌入文档

Posted

技术标签:

【中文标题】Mongoose:Coffeescript 中的递归嵌入文档【英文标题】:Mongoose: Recursive embedded-document in Coffeescript 【发布时间】:2011-12-20 23:42:31 【问题描述】:

基于this example(有效):

var Comment = new Schema();

Comment.add(
    title :  type: String, index: true 
  , date : Date
  , body : String
  , comments : [Comment]
);

我想创建一个 CoffeeScript 版本

mongoose = require 'mongoose'
Schema = mongoose.Schema

Person = new Schema
Person.add
  mother: Person
  father: Person

但是它返回一个错误,我不明白为什么

TypeError: undefined is not a function
    at CALL_NON_FUNCTION_AS_CONSTRUCTOR (native)
    at Function.interpretAsType (/path/node_modules/mongoose/lib/schema.js:202:10)
    at Schema.path (/path/node_modules/mongoose/lib/schema.js:162:29)
    at Schema.add (/path/node_modules/mongoose/lib/schema.js:110:12)
    at Object.<anonymous> (/path/Models/test.coffee:6:10)
    at Object.<anonymous> (/path/Models/test.coffee:10:4)
    at Module._compile (module.js:411:26)
    at Object.run (/usr/local/lib/node_modules/coffee-script/lib/coffee-script.js:57:25)
    at /usr/local/lib/node_modules/coffee-script/lib/command.js:147:29
    at /usr/local/lib/node_modules/coffee-script/lib/command.js:115:26

编辑:好的,我发现当 Person 不是数组(在括号中)时它不起作用,但是为什么呢?

【问题讨论】:

上面的链接(“此示例”)已损坏。新网址在这里:github.com/Automattic/mongoose/blob/master/examples/schema/… 【参考方案1】:

嵌入式文档只能作为数组中的项目存在。那是设计的,你可以问the authors他们的原因:)

您可能想使用DBRef

Person = new Schema
  mother:  type: Schema.ObjectId, ref: 'Person' 
  father:  type: Schema.ObjectId, ref: 'Person' 

(请注意,您不需要add 调用)

请参阅docs for populate/DBRef。

【讨论】:

以上是关于Mongoose:Coffeescript 中的递归嵌入文档的主要内容,如果未能解决你的问题,请参考以下文章

如何使用mongoose findOne

CoffeeScript 转换代码是不是错误?

Mongoose 对 promise 拒绝处理

没有 CoffeeScript 的 CoffeeScript 中的问号语法

CoffeeScript 中的函数

coffeescript:遍历数组中的对象