showEvaluationList移动到上边后为什么evaluationList变成undefined?
showEvaluationList: function (bookId, isFlush) { axios.get("/api/evaluation/list?bookId=" + bookId) .then(function (response) { const json = response.data if (json.code == "0") { if(isFlush){ this.evaluationList.splice(0, this.evaluationList.length) } const list = json.data.list; list.forEach(function (item) { item.ct = formatDate(item.create_time); this.evaluationList.push(item) }) } else { console.error(json) } })
这里的objApp我直接都替换成this了
报错截图:
12
收起
正在回答 回答被采纳积分+1
1回答
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星