当前位置 : 主页 > 网页制作 > HTTP/TCP >

在vue-cli中使用axios时报错TypeError: Cannot set property 'lists' of undefined at eval

来源:互联网 收集:自由互联 发布时间:2021-06-16
在vue-cli中使用axios拿取数据时 exportdefault{ data(){ return{ lists:{ } } }, methods:{ getList(){ axios.get(‘https://cnodejs.org/api/v1/topics‘,{ }) .then(function(response){ window.console.log(response.data.data); this.lists=r

在vue-cli中使用axios拿取数据时

export default {   data(){     return{       lists:{       }     }   },   methods: {     getList(){       axios.get(‘https://cnodejs.org/api/v1/topics‘,{       })       .then(function(response){         window.console.log(response.data.data);         this.lists = response.data.data;       })       .catch(function (error) {         window.console.log(error);       })     }   },     beforeMount() {     this.getList();   },

报错

TypeError: Cannot set property ‘lists‘ of undefined at eval (list.vue?51fc:19)

 

能get到数据,但无法传给lists数组

报错信息lists未定义,查找调试许久,发现是this指向问题。

在vue-cli里.then里使用function就会乱了this指向

把.then里function改用es6的写法就能正常传参了

.then((response)=>{
        window.console.log(response.data.data);
        this.lists = response.data.data;
      })

为什么用function定义就会乱this指向,奈何一时半会儿也没搞懂,留此疑惑,日后解答

上一篇:一元三次方程求解
下一篇:P3619 魔法
网友评论