代码如下,fetchData
通过 http 请求获取数据并放入 provinceList
,但 provinceList.length
等于 0。通过控制台输出相关信息,provinceList 中应该是有内容的。
代码均位于 vue 文件中。
changeCountry(val) {
this.fetchData(
this.provinceList,
`${this.API.province}/${this.countryCode}`,
);
this.provinceFlag = true;
const prolist = this.provinceList;
this.noProvince = (prolist.length === 0);
console.log('changeCountry: 1 ', prolist);
console.log('changeCountry: len ', prolist.length, 'noProvince ', this.noProvince);
this.$emit('addressSelect', val);
}
fetchData(array, url) {
this.axios
.get(url)
.then((resp) => {
if (resp.status === 200) {
const items = JSON.parse(JSON.stringify(resp.data.data));
array.splice(0, array.length, ...items);
} else {
console.log(resp.status);
}
})
.catch((err) => {
console.log(err);
});
},
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…