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,不知为何说他未定义,求大神解答
添加回答
举报
0/150
提交
取消