数据获取正常,但是这段代码提示错误
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();
}
})
})
}
大家帮忙看看
Caballarii
相关分类