我在使用autoForm将新的嵌套/数组值添加到集合时遇到了问题。
我正在尝试使用quickForm来更新问题。我希望用户能够添加更多答案选项。我的架构看起来像这样(简化为省略顺序,一些元数据等):
questionSchema = new SimpleSchema({
label: {
type: String
},
answers: {
type: Array,
minCount: 2,
maxCount: 6
},
"answers.$": {
type: Object
},
"answers.$._id": {
type: String,
regEx: SimpleSchema.RegEx.Id,
autoValue: function(){ return Random.id(); },
autoform: {
type: "hidden"
}
},
"answers.$.label": {
type: String,
regEx: /.{1,150}/,
autoform: {
label: false
}
},
"answers.$.count": {
type: Number,
defaultValue: 0,
autoform: {
type: "hidden"
}
}
});
除了answers.$.label
之外,当我刚通过quickForm autoform
添加问题时,我没有使用任何type='insert'
选项。当我想编辑问题时,我添加了这些选项,否则我收到的投诉是我离开了count
null。所以我把它们隐藏了,但让它们成为形式。
我的编辑表单如下所示:
{{> quickForm collection="Questions" id="editQuestionForm"
type="update" setArrayItems="true" doc=questionToEdit
fields="label, answers"}}
我目前能够更新我的问题的标签以及我最初添加的任何答案。但我无法添加新的答案选项。当我这样做时,它被拒绝,因为count
不是可选的。但是我指定了defaultValue
...
我希望我的quickForm看起来像这样,以便我不会将count
或_id
放在用户可以更改的地方:
{{> quickForm collection="Questions" id="editQuestionForm"
type="update" setArrayItems="true" doc=questionToEdit
fields="label, answers, answers.$.label"}}
但也许我需要保留answers.$._id
并隐藏以确保我的更改能够更新正确的答案?
所以:
我的答案在插入时默认为0,那么为什么在编辑和添加答案时不会发生这种情况?
autoForm可以执行upsert而不是更新吗?插入新问题,更新现有问题标签,根据需要使用defaultalue
或autoValue
。
我应该为这类事物使用方法吗?
答案 0 :(得分:2)
编辑: 我已经更新了示例,并将测试应用程序部署到了http://test-questions.meteor.com/。它的边缘有点粗糙(说实话,它只是有用的东西)但它应该显示实际的功能。使用底部添加新问题链接。现有问题应显示在addquestion表单的底部。单击现有问题进行编辑。总的来说,功能就在那里。只是不要因为糟糕的设计而恨我。责备时间女神。
我通常使用嵌入式文档的方法是将每个子对象划分为单独的模式。 这使代码保持整洁,易于理解,并避免典型的陷阱。
这是一个示例项目,展示了下面的行动。只需git pull和meteor run:https://github.com/nanlab/question
新链接http://app-bj9coxfk.meteorpad.com/
代码:http://meteorpad.com/pad/7fAH5RCrSdwTiugmc/
question.js:
Questions = new Mongo.Collection("questions");
SimpleSchema.answerSchema = new SimpleSchema({
_id: {
type: String,
regEx: SimpleSchema.RegEx.Id,
autoValue: function() {
return Random.id();
},
autoform: {
type: "hidden"
}
},
label: {
type: String,
regEx: /.{1,150}/,
autoform: {
label: false
}
},
count: {
type: Number,
autoValue: function() {
return 0;
},
}
})
Questions.attachSchema(new SimpleSchema({
label: {
type: String
},
answers: {
type: [SimpleSchema.answerSchema],
minCount: 2,
maxCount: 6
},
}))
Questions.allow({
insert: function(){return true;},
update: function(){return true;},
})
if(Meteor.isServer) {
Meteor.publish("questions", function() {
return Questions.find();
})
} else {
Meteor.subscribe("questions");
}