我一直在执行Im的这行代码。它说不允许使用mthod,但是我已经做了一些修复以接受请求
服务控制器
public function peakmode(Request $request, $id)
{
$command = new \App\BizCommands\UpdatePeakmodeServices();
$arr = $request->all();
//$arr["merchant_id"] = $this->get_id();
$service->merchant_id = 1;
$arr["id"] = $id;
$ret = $command->execute($arr, Auth::user());
//return response()->json(['success'=> ($ret->error_code==0), 'message'=> $ret->message]);
$message = array('message' => 'Service Successfully Updated!');
return redirect()->back()->with($message);
}
刀片表格
<form action="{{ route('services.peakmode', $service->id) }} ">
{{method_field('PUT')}}
<input type="checkbox" name="onoffswitch" class="onoffswitch-checkbox" id="serviceswitch-7838" service-id="{{ $service->id }}">
<label class="onoffswitch-label" for="serviceswitch-7838"> <span class="onoffswitch-inner"></span> <span class="onoffswitch-switch"></span> </label>
Ajax脚本
$(".onoffswitch .onoffswitch-checkbox").on("change",function(e){
service_id = $(this).attr('service-id');
if($(this).is(':checked') ){
peak = 1;
}else{
peak = 0;
}
$.ajax({
method: "POST",
url: $(this).prop('action'),
data: {
service_id: service_id,
peak: peak,
'_method': 'PUT',
"_token": "{{ csrf_token() }}",
}
})
.done(function(response){
console.log(response);
});
});
路线
Route::post('/merchant/services/peakmode/{id}', 'Merchant\ServicesController@peakmode')->name('services.peakmode');
答案 0 :(得分:0)
您已使用POST而不是PUT
Route::put('/merchant/services/peakmode/{id}', 'Merchant\ServicesController@peakmode')->name('services.peakmode');
我不确定AJAX中是否也使用了PUT,但是如果仅此一项失败,您可以尝试使用。
我不专业地自己独自使用所有POST和GET,因此我不必处理PUT和DELETE
我的解决方法:
<form action="{{ route('services.peakmode', $service->id) }} " method="POST">
//make sure not to include the {{method line}}
并在AJAX通话中
$.ajax({
method: "POST",
url: $(this).prop('action'),
data: {
service_id: service_id,
peak: peak,
"_token": "{{ csrf_token() }}",
}
})
和路线
Route::post('/merchant/services/peakmode/{id}', 'Merchant\ServicesController@peakmode')->name('services.peakmode');
答案 1 :(得分:0)
您只需要在ajax中添加方法POST
,然后必须像这样添加X-CSRF-TOKEN
,
Laravel文档 https://laravel.com/docs/5.7/csrf#csrf-x-xsrf-token
除了将CSRF令牌作为POST参数进行检查之外,VerifyCsrfToken中间件还将检查X-CSRF-TOKEN请求标头。例如,您可以将令牌存储在HTML元标记中:
<meta name="csrf-token" content="{{ csrf_token() }}">
然后,一旦创建了meta标签,就可以指示jQuery之类的库将令牌自动添加到所有请求标头中。这为基于AJAX的应用程序提供了简单便捷的CSRF保护:
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
现在,您的ajax请求应该看起来像
$.ajax({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
},
type:'POST',
url: $(this).prop('action'),
data: {
service_id: service_id,
peak: peak,
}
success: function(result) {
console.log(result);
},
error: function(result){
console.log(result);
}
});
如果有任何疑问,请随时询问。
这里是如何使用laravel和ajx发出补丁请求的方法,请参见此问题PATCH AJAX Request in Laravel
答案 2 :(得分:0)
将路线更改为:
Route::match(['POST', 'PUT'], '/merchant/services/peakmode/{id}', 'Merchant\ServicesController@peakmode')->name('services.peakmode');
答案 3 :(得分:0)
您已将方法POST
的路由添加到表单PUT
中,并在表单更改方法PUT
中使用了方法POST
{{method_field('POST')}}