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類型錯誤,不能設(shè)置未定義的屬性,數(shù)據(jù)response.data是一個對象數(shù)組我已經(jīng)初始化了titleList,不知為何說他未定義,求大神解答
vue 初始化數(shù)據(jù)賦值報錯
鴻蒙傳說
2018-11-21 18:13:00