laravel 5.5,auth:api的vuejs 2重定向

时间:2018-09-19 00:42:29

标签: vuejs2 laravel-5.5 response.redirect

当我尝试使用我的vuejs函数($ http)访问受auth:api保护的页面时,它出现此错误:

POST http://localhost:8000/api/AddQuestion 401(未经授权)

如果用户是访客,我想将其重定向到登录页面(我对用户使用api_token)非常感谢

这是我的Vue函数

      AddQuestion( NewQuestion ){

          this.$http.post('/api/AddQuestion',{

                     api_token:this.usertoken ,

                    Title_Forum : NewQuestion[0] ,  

                    Text_Forum : NewQuestion[1] ,  



              }).then(response => {

                          this.questions = response.data ;

                    }).catch( (error) =>{   console.log(error) }

              );

这是routes / api.php

  Route::middleware('auth')->group(function () {

      Route::post('/AddQuestion','ForumController@AddQuestion') ;

  });

非常感谢

0 个答案:

没有答案