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"의 오류를 보고합니다.

좋은 웹페이지 즐겨찾기