1

我在我的流星应用程序中获得了这个 SimpleSchema 的集合

Collection.attachSchema(new SimpleSchema({
    title:                  { type: String },
    slug:                   { type: String, unique: true },
    language:               { type: String, defaultValue: "en" },
    'category.element':     { type: String, optional: true }
}));

我尝试插入这个 JSON 数据,但我得到了insert failed: Error: Category must be an object at getErrorObject

{
    "_id" : "25uAB4TfeSfwAFRgv",
    "title" : "Test 123",
    "slug" : "test_123",
    "language" : "en",
    "category" : [
        {
            "element" : "Anything"
        }
    ]
}

我的 JSON 数据有什么问题?或者我的 SimpleSchema 有什么问题。我可以更改它们以匹配最佳方式。

4

2 回答 2

1

您需要首先声明对象,例如,

Collection.attachSchema(new SimpleSchema({
    ...,
    ....,
    category: {type: [Object], optional: true}
}));

之后,您可以扩展/定义对象字段,例如,

Collection.attachSchema(new SimpleSchema({
    ....,
    ....,
    category: {type: [Object]},
    'category.$.element': {type: String}
}));

如果它是一个数组对象([Object]),则使用'$',如果只有对象,则不要使用'$'。
如果您不确定对象结构,请使用另一个参数blackbox:true ,例如,

category: {type: [Object], blackbox: true}
于 2015-12-13T12:12:41.487 回答
0

最简单的解决方案是在架构中定义category对象数组:

Collection.attachSchema(new SimpleSchema({
    title:       { type: String },
    slug:        { type: String, unique: true },
    language:    { type: String, defaultValue: "en" },
    category:    { type: [Object], optional: true }
}));

这会让你摆脱困境。

如果您想更具体地了解 的内容,category则可以为. category例如:

CategorySchema = new SimpleSchema({
    element:     { type: String }
});

Collection.attachSchema(new SimpleSchema({
    title:       { type: String },
    slug:        { type: String, unique: true },
    language:    { type: String, defaultValue: "en" },
    category:    { type: [CategorySchema], optional: true }
}));
于 2015-09-12T21:19:56.157 回答