simpleSchema でフィールドの設定を解除したいのですが、フックの下でフィールドが設定または設定解除されません
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();
}
},
}