vue+elmentui의 구덩이 밟는 길(watch 구덩이 밟기)
1275 단어 Vue+ElementUI
data:{
toEditForm: {
id: null,
functionType: null
}
},
computed: {
"toEditFormWfId": function(){
return this.toEditForm.wfId
}
},
//
watch:{
"toEditFormWfId": function (val) {
// var that = this
const obj = this.workFunctionList.find((item) => item.id == val);
if( obj ){ //
this.toEditForm.functionType = obj.functionType ;
}
}
}
판단의 중요한 이유는 이 판단이 없으면 이 페이지가 다시 갱신될 때 "functionType is undefined"의 오류를 보고합니다.