如何在流星简单模式中取消设置字段

时间:2016-03-05 06:18:26

标签: meteor meteor-autoform simple-schema

我想在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();
    }
  },
}

0 个答案:

没有答案