我想在simpleSchema中取消设置一个字段,但该字段既未显示在set中,也未在unset下显示
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();
}
},
}