javascript - Vue2 Ajax(axios)分页更新dom数据不成功
PHP中文网
PHP中文网 2017-06-24 09:44:12
0
2
1413

由于在项目中,后台的数据一次性给前端,前端需要做一些分页的处理。
用的是Vue2+Axios 来做ajax请求 目前可以得到后端的数据console.log打印成功,但就是更新不上dom上。

html

JS

Vue.prototype.$ajax = axios; //修改原型链 var vm = new Vue({ el: '.main', data: { listt2:[ ], //页面要展示的数据 pageSize:10, //翻页每页显示数据 curPage:0, //当前页面 pageCount:'', //总共页面数 onn:true, //默认显示分页 items:' ', //后台数据 }, created:function(){ //Ajax获取后台数据,获取的数据存储在 this.items var url = "api.json"; this.$ajax.get(url) .then(function (response) { var jsons = response.data.getJson; var self = this; this.items =jsons; console.log(self.items); }).catch(function (error) { console.log(error); }); this.fanye(); //调用分页 }, methods: { page: function (el) { //点击翻页 el == 'last' ? this.curPage-- : this.curPage++; var curtotal = this.curPage * this.pageSize; var tiaoshu = this.curPage * this.pageSize + this.pageSize; this.listt2 = this.items.slice(curtotal,tiaoshu); document.body.scrollTop = 0; }, fanye: function () { //分页处理 var _this = this; _this.listt2 = []; if (_this.items) { _this.pageCount = Math.ceil(_this.items.length / _this.pageSize); for (var i = 0; i < _this.pageSize; i++) { if (_this.items[i]) { _this.listt2.push(_this.items[i]); } } } } } })

返回的模拟数据格式

{ "getJson":[ { "id":"59", "key":"science", "title":" 动物也是科技宅,这些智能科技装备你想要吗? ", "time":"2017-05-12", "name":"两个质子", "eng":"lianggezhizi" }, { "id":"60", "key":"science", "title":" 肯定你没见过的养老新科技! ", "time":"2017-06-19", "name":"老年健康生活方式", "eng":"aged-expo" }] }


已检查多遍,仍是只有样式没有数据,还望大牛指点

PHP中文网
PHP中文网

认证高级PHP讲师

全部回复 (2)
習慣沉默

created方法里面请求的第一个then里面,把var self = this; 提到this.$ajax.get(url) 上面,
作用域的问题,then方法里面的this已经不再是vue里的this

    学霸

    createdajax数据获取是异步的,你this.fanye()执行的时候,根本没有数据传入; 你可以打断点,console.log数据,试一下先

      最新下载
      更多>
      网站特效
      网站源码
      网站素材
      前端模板
      关于我们 免责声明 Sitemap
      PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!