所以我有一个基本形式,比方说:
<form action="" method="POST" role="form">
<legend>Form title</legend>
<div class="form-group">
<label for="">label</label>
<input type="text" name="main" class="form-control" id="" placeholder="Input field">
</div>
<div class="form-group">
<label for="">label</label>
<input type="text" name="test" class="form-control" id="" placeholder="Input field">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
现在,在我的控制器方法中,我正在使用请求:
public function store(CreateTestRequest $request)
{
}
现在,在我的请求文件中,我有一个规则,让我们说测试输入:
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'main' => 'required',
'test' => [
'required',
'numeric',
new \App\Rules\Account\MyCustomRule,
],
];
}
在myCustomRule中,我试图访问main的属性和值,以及测试的属性和值,我可以默认访问测试的一个,但我不知道如何将其他输入的名称和值传递给我的自定义规则......这可能吗?如果是这样,我怎么能实现这个目标呢?
<?php
namespace App\Rules\Account;
use Illuminate\Contracts\Validation\Rule;
class MyCustomRule implements Rule
{
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct()
{
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
dd($value);
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return 'Sorry. ';
}
}
答案 0 :(得分:2)
您可以在实例化规则对象时传递参数,然后在构造函数中访问它们。
在您的表单请求中:
new \App\Rules\Account\MyCustomRule($this->main),
在你的规则中:
protected $main;
public function __construct($main)
{
$this->main = $main;
}
public function passes($attribute, $value)
{
// You can now access $this->main for whatever logic you need
return $value === $this->main;
}