使用mpvue開(kāi)發(fā)小程序,在A頁(yè)面onLoad時(shí)請(qǐng)求接口并賦值渲染,代碼如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
methods: { ? ? getReadList() { ? ? ? ? this.bookList = []; ? ? ? ? request(`book/all`, "GET").then(res => { ? ? ? ? ? ? if (res.status == 1000) { ? ? ? ? ? ? ? ? res.content.forEach(item => { ? ? ? ? ? ? ? ? ? ? this.bookList.push(item) ? ? ? ? ? ? ? ? }); ? ? ? ? ? ? } ? ? ? ? }); ? ? } }, onLoad() { ? ? this.getReadList(); } |
但是在app.json中配置了plugins后,A頁(yè)面渲染不出bookList的數(shù)據(jù)。愛(ài)掏網(wǎng) - it200.com
在請(qǐng)求回調(diào)中不通過(guò)forEach循環(huán),直接用this.bookList = res.content能正常渲染。愛(ài)掏網(wǎng) - it200.com
很困惑,這到底是什么原因呢?
? ?
聲明:所有內(nèi)容來(lái)自互聯(lián)網(wǎng)搜索結(jié)果,不保證100%準(zhǔn)確性,僅供參考。如若本站內(nèi)容侵犯了原著者的合法權(quán)益,可聯(lián)系我們進(jìn)行處理。