我在Laravel 5.5 + vuejs2项目上安装了护照..我知道如何在MyPage.vue中使用它令人困惑,我已经使用中间件('auth')保护了api中的路由,现在我得到了401(未经授权)我为此找不到任何好的教程!
在这里我的页面。vue
select sp_number,category FROM TABLE1 MINUS
SELECT sp_number,category from TABLE2;
这是api路由
AddQuestion( NewQuestion ){
this.$http.post('/api/AddQuestion',{
Title_Forum : NewQuestion[0] ,
Text_Forum : NewQuestion[1] ,
}).then(response => {
this.questions = response.data ;
}).catch( (error) =>{ console.log(error) }
);
} ,
最后是我的控制器
Route::middleware('auth')->group(function () {
Route::post('/AddQuestion','ForumController@AddQuestion')
});
请帮助!