这是我得到的错误
更新错误:错误:需要作者
这是我的架构:
ServiceSchema=new SimpleSchema({
website:{
type:String,
label:"Website"
},
store:{
type:String,
label:"Store"
},
author:{
type:String,
label:"Author",
autoValue:function(){
return this.userId
}
}
});

这里我用类型更新调用quickform:
{{>quickForm collection="Services" id="updateService" type="update" doc=this }}
相同的架构适用于插入但不适用于更新。我尝试将作者值设置为可选,但它仍然无法正常工作。我做错了什么?