数据获取正常,但是这段代码提示错误loadData(){ this.$http.get('static/data/data.json').then((res)=>{ //this.data = res.body.list; //console.log(this.data); this.data = res.data.concat(this.data) this.$nextTick(()=>{ if (!this.scroll) { this.scroll = new BScroll(this.$refs.wrapper,{}) this.scroll.on('touchend',(pos)=>{ //下拉 if (pos.y > 50) { this.loadData() } }) }else{ this.scroll.refresh(); } }) }) }大家帮忙看看
添加回答
举报
0/150
提交
取消