已写的代码:
const res = axios.get('http://localhost:8080/area/city?level=1').then(res=>{
res.data.body
})
}
const data = [
]
打印res.data.body显示如下:
请问如何将本地数据库数据放进data数组里面?
已写的代码:
const res = axios.get('http://localhost:8080/area/city?level=1').then(res=>{
res.data.body
})
}
const data = [
]
打印res.data.body显示如下:
const data = [
]
const res = axios.get('http://localhost:8080/area/city?level=1').then(res=>{
data=res.data.body
})
赋值呗 。