Lumen/Laravel跨域POST时候 405错误怎么解决

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lumen/Laravel跨域POST时候 405错误怎么解决相关的知识,希望对你有一定的参考价值。

参考技术A 打开IIS__>默认网站(或其他网站)————右键属性-----主目录----
配置----添加-----
可执行文件处:C:\WINDOWS\system32\inetsrv\asp.dll
扩展名:.html 或.htm 或.shtml 依自己需要而定。
动作:全部动作。(如果你传递的是html类型文件,全部动作没关系,如果
需要传递密码表单之类的,请选其他,如GET,HEAD,POST,TRACE)
选项页:启用父路径。
说明一下,遇到405错误时,并不是网页文件有问题,而是权限传递时候
遇到错误,也就是父路径权限,或许有其他的办法,但我这个办法是很好的。试过多次,效果很好。

Jquery:使用 laravel 的跨域 ajax 'POST'

【中文标题】Jquery:使用 laravel 的跨域 ajax \'POST\'【英文标题】:Jquery: Cross-domain ajax 'POST' with laravelJquery:使用 laravel 的跨域 ajax 'POST' 【发布时间】:2015-02-03 08:09:32 【问题描述】:

我正在尝试从 jquery 的另一个域的 laravel 服务器上执行 ajax 'POST'。我的 laravel Route 包含以下代码:

Route::post('auth', function()
$data = Input::get('username');
return Response::json($data->toArray())->setCallback(Input::get('callback'),JSON_PRETTY_PRINT);
);

我的客户端来自不同的服务器,而 JQuery ajax 'POST' 是:

function authUser(appId)
var data = '"username": "' + appId + '"';
$.ajax(
    url: "http://localhost:8080/auth",
    type: "POST",
    dataType: 'jsonp',
    data: JSON.stringify(data),
    processData: false,
    contentType: 'application/json',
    CrossDomain:true,
    async: false,
    success: function (data) 
        console.log(data);
    ,
    error: function (xhr, ajaxOptions, thrownError)  //Add these parameters to display the required response
        alert(xhr.status);
        alert(xhr.responseText);
    
);

我在标题响应中收到 405 Method Not Allowed

这个问题的解决方法是什么?

【问题讨论】:

【参考方案1】:

我自己解决了这个问题,将数据类型更改为 json 并在 apache 中添加标头。

jQuery函数:

function authUser(appId)
    var data = '"username": "' + appId + '"';
    $.ajax(
        url: "http://localhost:8080/auth",
        type: "POST",
        dataType: 'json',
        data: JSON.stringify(data),
        processData: false,
        contentType: 'application/json',
        CrossDomain:true,
        async: false,
        success: function (data) 
            console.log(data);
        ,
        error: function (xhr, ajaxOptions, thrownError)  //Add these parameters to display the required response
            alert(xhr.status);
            alert(xhr.responseText);
        
    );

Apache 中的标头是:

Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Methods "GET, PUT, POST, DELETE, OPTIONS"
Header set Access-Control-Allow-Headers "Content-Type, Content-Range, Content-Disposition, Content-Description"

我知道 Access-Control-Allow-Origin 到“*”的标头中的 CORS 会使安全性无效,但如果有人需要解决方案,它会写在那里。

【讨论】:

这是错误的。如果你想从另一个域做 ajax 发布请求,那么你应该只做一个请求 csrftoken 的 ajax 请求,然后将它与 ajax 发布请求一起传回 需要 json.stringify 吗?如果我没记错的话,laravel 会从所有请求中解析 json,所以你不需要对你的数据进行字符串化。也许这就是方法不允许错误的原因

以上是关于Lumen/Laravel跨域POST时候 405错误怎么解决的主要内容,如果未能解决你的问题,请参考以下文章

Lumen:在 routes.php 第 17 行:升级到 5.5 后调用未定义的方法 Laravel\Lumen\Application::post()。*

Laravel/Lumen 中怎么执行以下 SQL 语句

在 Lumen 或 Laravel 5 中更改时区

Laravel/Lumen 5.3.3:在迁移中覆盖 env 值

Lumen Repository

Jquery:使用 laravel 的跨域 ajax 'POST'