javascript - vue 初始化数据赋值报错
问题描述
vue代码<script>import axios from ’axios’;export default { data() {return { titleList: [],} }, created() {this.axios.get(’XX’).then(function(response) { console.log(response.data); this.titleList=response.data;}).catch(function (error) { console.log(error);}); }}</script>报错
TypeError: Cannot set property ’titleList’ of undefined类型错误,不能设置未定义的属性,
数据response.data是一个对象数组我已经初始化了titleList,不知为何说他未定义,求大神解答
问题解答
回答1:this 指向更改了 你可以打印出this来看一下指向谁
解决方案
1.用箭头函数吧 2.保存this (let _this = this)
回答2:.then(res => { this.titleList = res;})回答3:
this.axios.get(’XX’) .then(function (response) { response=response.body; this.titleList=response.data; }) .catch(function (error) { console.log(error);})
这样试下。如果不行,把错误贴出看下!
回答4:this指针丢失,可以使用箭头函数,也可以用一个变量保存this let _this = this
回答5:我在使用axios请求数据的时候记得是在程序入口文件main.js里面全局引入axios类库,试试引入后用Vue.prototype.$http=axios,之后就可以在全局使用了,至于楼上给出的答案指出的this指针问题,可以试试,我习惯了es6的语法,所以项目中用的一般都是箭头函数
回答6:axios.get(’***’).then((res) => { this.titleList=res.data;});
使用这种方式试试
相关文章:
1. html - 特殊样式按钮 点击按下去要有凹下和弹起的效果2. angular.js - ng-grid 和tabset一起用时,grid width默认特别小3. Java 在内部类中访问变量。需要宣布为最终4. android有ldpi, mdpi, hdpi, xhdpi这些drawable文件夹,系统是依据什么去选择的?5. angular.js - angularjs 与requirejs集成6. Java中的多人游戏。将客户端(玩家)连接到其他客户端创建的游戏7. android - textview在获取网络数据填充之后,占据的是默认的大小,点击之后才会包裹内容。8. android - 美团筛选处筛选条件停靠+条件点击滑动到顶部。9. mysql中 when then 的优化10. html5 - 在一个页面中 初始了两个swiper 不知道哪里错了 一直不对
