2020
10-09
10-09
浅谈vue获得后台数据无法显示到table上面的坑
因为刚学vue然后自己自习了一下axios,然后想写一个简单的查询后台数据<trv-for="userinuList"><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);...
继续阅读 >