我正在处理一个用户可以更新其出生日期的表单。该表单为用户提供了day
,month
和year
的3个单独字段。当然,在服务器端,我希望将这3个单独的字段视为一个值,即yyyy-mm-dd
。
因此,在验证和更新我的数据库之前,我想通过将date_of_birth
,year
和month
与{{1}连接来更改表单请求以创建day
字段}}字符来创建我需要的日期格式(并且可能取消设置原始的3个字段)。
使用我的控制器手动实现此功能不是问题。我可以简单地抓取输入,将-
个字符分隔的字段连接在一起并取消设置。然后,我可以在传递给处理命令之前手动验证。
但是,我更愿意使用-
来处理验证并将其注入到我的控制器方法中。因此,我需要一种在执行验证之前实际修改表单请求的方法。
我确实找到了类似的以下问题:Laravel 5 Request - altering data
它建议覆盖表单请求上的FormRequest
方法,以包含在验证之前操作数据的逻辑。
all
这对于验证来说都很好,但是覆盖<?php namespace App\Http\Requests;
class UpdateSettingsRequest extends Request {
public function authorize()
{
return true;
}
public function rules()
{
return [];
}
public function all()
{
$data = parent::all();
$data['date_of_birth'] = 'test';
return $data;
}
方法实际上并不会修改表单请求对象上的数据。因此,在执行命令时,表单请求包含原始未修改的数据。除非我使用现在重写的all
方法来提取数据。
我正在寻找一种更具体的方法来修改我的表单请求中的数据,而不需要调用特定的方法。
干杯
答案 0 :(得分:36)
<?php namespace App\Http\Requests;
class UpdateSettingsRequest extends Request {
public function authorize()
{
return true;
}
public function rules()
{
return [];
}
protected function getValidatorInstance()
{
$data = $this->all();
$data['date_of_birth'] = 'test';
$this->getInputSource()->replace($data);
/*modify data before send to validator*/
return parent::getValidatorInstance();
}
答案 1 :(得分:9)
在我自己搞砸之后,我想出了以下内容:
应用/ HTTP /请求/ Request.php 强>
<?php namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
abstract class Request extends FormRequest {
/**
* Override the initialize method called from the constructor to give subclasses
* an opportunity to modify the input before anything happens.
*
* @param array $query
* @param array $request
* @param array $attributes
* @param array $cookies
* @param array $files
* @param array $server
* @param null $content
*/
public function initialize(array $query = array(), array $request = array(), array $attributes = array(), array $cookies = array(), array $files = array(), array $server = array(), $content = null)
{
parent::initialize($query, $request, $attributes, $cookies, $files, $server, $content);
// Grab the input
$data = $this->getInputSource()->all();
// Pass it off to modifyInput function
$data = $this->modifyInput($data);
// Replace modified data back into input.
$this->getInputSource()->replace($data);
}
/**
* Function that can be overridden to manipulate the input data before anything
* happens with it.
*
* @param array $data The original data.
* @return array The new modified data.
*/
public function modifyInput(array $data)
{
return $data;
}
}
然后在扩展类时,您可以像这样覆盖modifyInput
方法:
应用/ HTTP /请求/ TestRequest.php 强>
<?php namespace App\Http\Requests;
class TestRequest extends Request {
public function authorize()
{
return true;
}
public function rules()
{
return [];
}
/**
* Modify the input.
*/
public function modifyInput(array $data)
{
$data['date_of_birth'] = 'something';
// Make sure to return it.
return $data;
}
}
这似乎符合我的需要。我不确定这样做的任何缺点所以我欢迎任何评论/批评。
上面的Shift Exchange给出的答案也可以正常使用。
答案 2 :(得分:3)
我采用了与Julia Logvina类似的方法,但我认为这种方式在验证之前添加/修改字段的方式稍微优雅一些(Laravel 5.1)
<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class UpdateSettingsRequest 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 [];
}
/**
* Extend the default getValidatorInstance method
* so fields can be modified or added before validation
*
* @return \Illuminate\Contracts\Validation\Validator
*/
protected function getValidatorInstance()
{
// Add new data field before it gets sent to the validator
$this->merge(array('date_of_birth' => 'test'));
// OR: Replace ALL data fields before they're sent to the validator
// $this->replace(array('date_of_birth' => 'test'));
// Fire the parent getValidatorInstance method
return parent::getValidatorInstance();
}
}
这将扩展默认getValidatorInstance
,以便我们可以在请求到达验证器之前修改请求中的输入值(防止它使用原始的未修改数据)。修改数据后,它会触发原始getValidatorInstance
,然后一切正常。
您可以在您的请求中使用$this->replace(array())
或$this->merge(array())
个新字段。我已经在上面的代码段中包含了如何执行这两个操作的示例。
replace()
将使用您提供的数组替换所有字段。
merge()
会在您的请求中添加新字段。
答案 3 :(得分:3)
我认为这是最好的方法:Laravel 5.1 Modify input before form request validation
在Laravel 5.4+中,有一种专用方法可以使用它:prepareForValidation
答案 4 :(得分:3)
从Laravel 5.4开始,您可以在FormRequest类上使用prepareForValidation
方法。
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class StorePostRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'title' => 'required|max:200',
'body' => 'required',
'tags' => 'required|array|max:10',
'is_published' => 'required|boolean',
'author_name' => 'required',
];
}
/**
* Prepare the data for validation.
*
* @return void
*/
protected function prepareForValidation()
{
$this->merge([
'title' => fix_typos($this->title),
'body' => filter_malicious_content($this->body),
'tags' => convert_comma_separated_values_to_array($this->tags),
'is_published' => (bool) $this->is_published,
]);
}
}
这里有更详细的文章: https://sampo.co.uk/blog/manipulating-request-data-before-performing-validation-in-laravel
答案 5 :(得分:2)
您仍然会覆盖all()
方法 - 但请尝试这样
public function all()
{
$input = $this->all();
$input['date_of_birth'] = $input['year'].'-'.$input['month'].'-'.$input['day'];
$this->replace($input);
return $this->all();
}
然后你自己自己调用方法 - 在执行规则时验证器本身会调用它。
答案 6 :(得分:0)
我也需要一种快速而肮脏的方法来实现这一目标。我想使用Shift Shifts解决方案,但由于调用$this
创建无限递归循环,它无法工作。引用父方法的快速更改将解决问题:
public function all()
{
$input = parent::all();
$input['date_of_birth'] = $input['year'].'-'.$input['month'].'-'.$input['day'];
$this->replace($input);
return parent::all();
}
HTH其他有需要的人。