1.? // 遞歸
? ? formatTree(data) {
? ? ? for (let i in data) {
? ? ? ? // if (data[i].children === null) continue
? ? ? ? if (data[i].children.length === 0) {
? ? ? ? ? // 證明是最后一級(jí)猛计,取值
? ? ? ? ? this.dynamicTags.push(data[i].label)
? ? ? ? } else {
? ? ? ? ? // 證明不是最后一級(jí),繼續(xù)找
? ? ? ? ? this.formatTree(data[i].children)
? ? ? ? }
? ? ? }
? ? }
2. this.formatTree(val)