this.dict.type.mq_type是从字典里获取的,直接调用changeSourceType(),由于this.dict.type.mq_type也是字典从接口获取的,this.dict.type.mq_type.forEach会报错,请问这种异步该怎么处理呢?
changeSourceType() {
let label = null
this.filterDataSourceList = []
this.dict.type.mq_type.forEach((item) => {
if (item.value == this.form.src__type) {
label = item.label
}
})
this.dataSourceList.forEach((item) => {
if (item.baseType == label) {
this.filterDataList.push(item)
}
})
},
从你的代码里没看出异步呀