gpt4 book ai didi

php - 带有请求正文的 Laravel DELETE 方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:07:35 25 4
gpt4 key购买 nike

我一直在尝试将带有规则和消息的 FormRequest 添加到我的 delete 方法中,但返回的请求是空的,而且规则每次都失败。

是否可以在delete方法中获取请求数据?

这是我的请求类:

use App\Http\Requests\Request;

class DeleteRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}

/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'staff_id' => ['required', 'exists:users,uid'],
'reason' => ['required', 'string'],
];
}

/**
* Get custom messages for validator errors.
*
* @return array
*/
public function messages()
{
return [
'staff_id.required' => staticText('errors.staff_id.required'),
'staff_id.exists' => staticText('errors.staff_id.exists'),
'reason.required' => staticText('errors.reason.required'),
'reason.string' => staticText('errors.reason.string'),
];
}
}

和 Controller :

/**
* Handle the 'code' delete request.
*
* @param integer $id The id of the code to fetch.
* @param DeleteRequest $request The request to handle the data.
* @return response
*/
public function deleteCode($id, DeleteRequest $request)
{
dd($request->all());
}

最佳答案

即使 HTTP/1.1 规范没有明确声明 DELETE 请求不应该有实体主体,一些实现完全忽略包含你的数据的主体,例如某些版本的 Jetty 和 Tomcat。另一方面,一些客户端也不支持发送。

将其视为 GET request .你见过表单数据吗? DELETE 请求几乎相同。

您可以阅读很多关于该主题的内容。从这里开始:
RESTful Alternatives to DELETE Request Body

您似乎想要改变资源的状态而不是破坏它。软删除不是删除,因此需要 PUTPATCH 方法,它们都支持实体主体。如果软删除不是这种情况,那么您将通过一个调用执行两个操作。

关于php - 带有请求正文的 Laravel DELETE 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47294903/

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