我正在使用 autoValue 通过调用doc simple schemathis.unset()
中提到的有条件地使 doc 字段值可用,但字段值仍显示在 collection 中,以下代码中是否有任何问题。
'checking':{
type:String,
optional:true,
label:"Wheelchair Type",
autoValue:function(){
if(this.siblingField('type').value != "wheelchair"){
this.unset();
}
}