我在我的流星应用程序中获得了这个 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 有什么问题。我可以更改它们以匹配最佳方式。