Required_if laravel with multiple value(具有多个值的 required_if laravel)
问题描述
我有一个这样的下拉菜单:
I have a dropdown menu like this:
<select name="selection">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<input type="text" name="stext">
我想要在 Laravel 中的以下内容:
I want the following in laravel:
public static myfunction(){
$input = Input::only('selection','stext');
$rule = array(
'selection' => 'required',
'stext' => 'required_if:selection,2,3',
);
$validate = Validator::make($input,$rule);
}
但是如果我选择选项 1,stext
仍然是必需的.为什么?我该如何解决?
But if I select option 1, stext
is still required. Why?
How can I fix it?
推荐答案
正如 LePhleg answer 所指出的,此验证有一个最好的语法:
As pointed out by LePhleg answer, there is a nicest syntax for this validation:
$rule = array(
'selection' => 'required',
'stext' => 'required_if:selection,2,3,
);
下面的旧答案:
我认为 require_if 验证每次只接受一个值.尝试更改您的验证代码如下:
I think that the require_if validation accept only one value per time. Try to change your validation code as below:
$rule = array(
'selection' => 'required',
'stext' => 'required_if:selection,2|required_if:selection,3',
);
检查 LePhleg 的答案,更干净.在回答不可能的时候,只检查问题,他正在使用相同的方法但没有奏效.
Check LePhleg answer, is more cleaner. At the time of the answer that was not possible, just check the question, he was using the same method but not worked.
这篇关于具有多个值的 required_if laravel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:具有多个值的 required_if laravel
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01