我使用Laravel和Vue.js創建應用程序,最初我的應用程序在創建一個更多組件,遵循了同樣的程序等,數據停止被於上表中,我開始Laravel 5.1和Vue.js - 21678未捕獲(承諾中)TypeError:無法讀取null的屬性'data'
fetchUser: function(page) {
var _this2 = this;
this.$http.get('http://localhost:8000/api/v1/users?page='+page).then((response) => {
_this2.$set('users', response.data.data);
_this2.$set('pagination', response.data);
}, (response) => {
console.log("Ocorreu um erro na operação");
});
},
得到以下錯誤「main.js:21678未捕獲的(在承諾)TypeError:無法讀取null的屬性'data',其中所有內容都表示它位於main.js f如果有人知道發生了什麼,請幫助我。接下來我介紹負責錯誤的函數的代碼。
當我運行「的console.log(響應)」作爲下列圖像將顯示在結果: console.log(response)
請幫助我,因爲我想繼續使用Laravel和Vue.js.這一動態
響應數據作爲正文返回,而不是數據。你能顯示正在生成數據的後端代碼嗎? – Ben