對於前端小菜雞來講,被這個問題也是困擾了很久。也是百度的方法。
表單部分代碼:前端
<el-form-item label="部門名稱:" prop="deptId"> <el-cascader placeholder="請選擇部門" :props="depShowType" :options="deptData" filterable change-on-select v-model="SelectdeptId"> </el-cascader> </el-form-item>
data中定義:node
depShowType:{ value:'id', label:'name', children:'nodes' }, SelectdeptId:[],
methods中:segmentfault
// 編輯 handleEdit(data){ this.textShow=true; this.textForm=data; this.SelectdeptId=this.changeDetSelect(data.deptId,this.deptData) //數據雙向綁定 }, changeDetSelect(key,treeData){ let arr = []; // 在遞歸時操做的數組 let returnArr = []; // 存放結果的數組 let depth = 0; // 定義全局層級 // 定義遞歸函數 function childrenEach(childrenData, depthN) { for (var j = 0; j < childrenData.length; j++) { depth = depthN; // 將執行的層級賦值 到 全局層級 arr[depthN] = (childrenData[j].id); if (childrenData[j].id == key) { returnArr = arr.slice(0, depthN+1); //將目前匹配的數組,截斷並保存到結果數組, break } else { if (childrenData[j].nodes) { depth ++; childrenEach(childrenData[j].nodes, depth); } } } return returnArr; } return childrenEach(treeData, depth); },
此方法主要參考這位大神:https://segmentfault.com/u/li...數組