我想取消设置 simpleSchema 中的字段,但该字段既未显示在 set 中,也未在钩子下未设置
before:{
update:function(mod){
console.log(mod["$set"]);
console.log(mod["$unset"])
这就是我为取消设置所做的事情
'mobility.walkerType':{
type:String,
optional:true,
label:"WalkerType",
autoValue:function(){
if(this.siblingField('type').value != "walker"){
this.unset();
}
},
}