带有请求体的Laravel DELETE方法

问题描述 投票:4回答:1

我一直在尝试添加一个带有规则和消息的FormRequest到我的删除方法,但请求回来是空的,规则每次都失败。

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

这是我的请求类:

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'),
        ];
    }
}

和控制器:

/**
 * 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());
}
php laravel http laravel-5 http-delete
1个回答
9
投票

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

把它想象成一个GET request。你见过表格数据吗? DELETE请求几乎相同。

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

看起来你想要改变资源的状态而不是破坏它。软删除不是删除,因此需要PUTPATCH方法,它们都支持实体。如果不是软删除,则通过一次调用进行两次操作。

© www.soinside.com 2019 - 2024. All rights reserved.