Api路由返回空数组evenif表包含数据。 我想列出users.Route模型绑定失败
这是我的api路线
Route::middleware('auth:api')->get('/users',function(){
return App\User::get();
});
这是我在刀片模板中使用的vue组件
<template>
<div class="row" style="min-height:250px;">
<ul>
<li v-for="user in users">
@{{user.name}}
</li>
</ul>
</div>
</template>
<script>
export default{
data() {
return {
users : [],
}
},
ready: function(){
this.getUsers();
},
methods: {
getUsers: function(response){
axios.get('http://localhost:8000/api/users')
.then(response => {
this.users = response.data;
})
.catch(error => {
});
},
},
}
</script>