Axios,api,laravel get:get方法正在运行..但是对于post方法cors错误

时间:2017-11-11 07:33:51

标签: php api axios laravel-5.5

使用axios。我的get方法正常,但post方法显示cors错误。并在chome-> networs-> header

中获得不同的标题响应
axios.get('http://127.0.0.1:8000/api/login', {
            params : {

                username:username,
                password:password,
            }
            })
            .then(function(response) {
                console.log(response)
            })
            .catch(function(error) {
                console.log(error)
            })

获取标题回复

 Access-Control-Allow-Origin    *
  Access-Control-Allow-Methods POST, GET, OPTIONS, PUT, DELETE
   Access-Control-Allow-Headers 
   Content-Type, X-Auth-Token, Origin

帖子的标题回复

    Allow       POST
     Access-Control-Request-Method      POST
    Access-Control-Request-Headers      content-type

帮帮我PLZ .....

1 个答案:

答案 0 :(得分:0)

我会得到同样的问题

我正在尝试this url并解决我的问题

 请试试这个....