在这个项目里,将request
得到的数据push
到数组里。再在一个method
里能console.log
出数组对象里的内容,但arr.length
却是0
,因此不能用循环获取里面的元素。
一个解决的办法:将要处理数组的代码,直接写在request
的success
时
axios.then(response => {
reponse.data
/*处理数组代码块*/
})
在这个项目里,将request
得到的数据push
到数组里。再在一个method
里能console.log
出数组对象里的内容,但arr.length
却是0
,因此不能用循环获取里面的元素。
一个解决的办法:将要处理数组的代码,直接写在request
的success
时
axios.then(response => {
reponse.data
/*处理数组代码块*/
})