我试图用规则实现验证来验证模型中的字段;如官方文档中所示,以这种方式:
1)在App / Rules文件夹中我放置了文件Um.php:
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
use App\Models\Common\Item;
class Um implements Rule
{
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
if(strlen($attribute) < 5)
return false;
return true;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return 'The field is too short ';
}
}
2)在我的控制器类中,在方法更新中:
use App\Rules\Um as RuleUm;
...
public function update(Request $request $item)
{
//$item is the model don't worry for this
//Here is where I invoke the rule
$request->validate([
'codum' => [ new RuleUm],
]);
$item->update($request->input());
//...son on
}
到目前为止一切顺利,问题出现在更新数据之后; pass()方法完全被忽略;并碰巧执行更新。这不依赖于方法的逻辑,因为它在任何情况下仍然返回false,就像Laravel仍然忽略该方法一样,它不会被执行。
有人能帮我吗?我究竟做错了什么?
如果您正在处理自定义规则类,则它不会验证字段(在您的情况下为codum)是否为空或请求中是否存在。如果您希望自定义验证对象运行,即使值为空,您还需要使用ImplicitRule
合约。
看到这个article也一样
总之,你需要这样做:
class Um implements ImplicitRule