淺談vue獲得後臺資料無法顯示到table上面的坑
阿新 • • 發佈:2020-08-14
因為剛學vue然後自己自習了一下axios,然後想寫一個簡單的查詢後臺資料
<tr v-for=" user in uList"> <td>{{user.id}}</td> <td>{{user.name}}</td> <td>{{user.gender}}</td> </td> </tr>
然後先是寫了這樣一個程式碼
created: function () { axios.get("http://localhost:8080/student/findAll").then(function (response) { this.uList = response.data; console.log(uList); }).catch(function (reason) { }) }
然後後臺可以獲取到資料,但是無法顯示到table上面
發現this.uList雖然改變的資料但是資料無法顯示到table上面
然後發現這裡的this不是外部的this物件,然後進行了更改,資料就回顯了
new Vue({ el:'#app',data:{ uList:[],},created: function () { var arr = this; axios.get("http://localhost:8080/student/findAll").then(function (response) { arr.uList = response.data; console.log(uList); }).catch(function (reason) { }) } })
補充知識:vue data有值,但是頁面{{}} 取不到值
我的問題出在js引入的順序不對,導致不能正常顯示vue中的值
正確的順序應該是:
先引入vue的js--------html程式碼-----最後引入自己寫的js
以上這篇淺談vue獲得後臺資料無法顯示到table上面的坑就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。