尝试在猫鼬中创建关系时出错

时间:2018-10-04 12:01:21

标签: mongoose mongoose-schema

好的,所以当我尝试创建架构时出现此错误:

    state = {
     Timer:false
    };


const timerStop = this.state.Timer;


setTimeout(() => {
  this.setState({Timer: true});
}, 10000);

这是我的模式

F:\web udvikling\Skole\rts-svendeprøve\node_modules\mongoose\lib\schema.js:696
throw new TypeError('Undefined type `' + name + '` at `' + path +
^
TypeError: Undefined type `undefined` at `posted`
Did you try nesting Schemas? You can only nest using refs or arrays.

我仅在添加_author和_category时收到错误消息。

我已尝试遵循此Mongoose schema reference and undefined type 'ObjectID' 但这没有帮助,也有很多其他帖子。我不确定我在做什么错

1 个答案:

答案 0 :(得分:0)

我愚蠢地度过了美好的时光。

我的问题不是关系,而是我的“发布”键不是这样的事实-> 已发布:{类型:日期,默认值:Date.now()}