当前位置:  开发笔记 > 编程语言 > 正文

Mongoose:Coffeescript中的递归嵌入式文档

如何解决《Mongoose:Coffeescript中的递归嵌入式文档》经验,为你挑选了1个好方法。

基于这个例子(有效):

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. (/path/Models/test.coffee:6:10)
    at Object. (/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不是数组(括号中)时它不起作用,但为什么呢?



1> Ricardo Toma..:

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

您可能想要使用DBRef:

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

(注意你不需要add电话)

请参阅populate/DBRef的文档.

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有