gpt4 book ai didi

jquery - 执行 Ajax 时不允许使用方法

转载 作者:行者123 更新时间:2023-12-01 07:08:29 25 4
gpt4 key购买 nike

路线

Route::put('url/update',['as'=>'test.update', 'uses'=>'TestController@update']);
<小时/>

Ajax

$.ajax({
url: 'url/update',
type: 'PUT',
dataType: 'json',
data: $inputs ,
success: function (data, textStatus, xhr) {
console.log(data);
},
error: function (xhr, textStatus, errorThrown) {
console.log('PUT error.', xhr, textStatus, errorThrown);
}
});
<小时/>

结果

PUT http://localhost:80/url/update 405 (Method Not Allowed)

最佳答案

将方法更改为“POST”,并在表单中添加隐藏元素“_method”,并将值设置为“PUT”。

来源:

关于jquery - 执行 Ajax 时不允许使用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34320217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com