- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在尝试验证数组输入并选择如下:
<td width="23%">
{!!Form::select('mmscod_id[]',['' => '- Seleccione un material -'] +$mat,null,['class' => 'form-control', 'id'=>'mmscod_id'])!!}
</td>
<td width="17%">
<input type="text" class="form-control" id="cantidad" name="vtcanp[]"/>
</td>
<td width="17%">
<input type="text" class="form-control" id="precio" name="vtprep[]"/>
</td>
我正在使用proengsoft/laravel-jsvalidation用于客户端验证。对于后端,我使用 Laravel 的表单请求。
我也是用这个网站的方法:How To: Validate an array of form fields with Laravel但它不起作用并抛出错误:
编辑:我忘了提及这些元素是动态创建的请帮助我
最佳答案
Laravel 支持验证数组输入。您需要使用此约定来验证数组项。
$rules = [
'vtcanp.*' => 'required',
];
例如:
这是我的自定义请求类
class InvoiceRequest extends FormRequest
{
/**
* 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()
{
$rules =[
'client' => 'required',
'date' => 'required',
'total' => 'required',
'discount' => 'required',
'item.*' => 'required',
'rate.*' => 'required',
'quantity.*' => 'required',
];
return $rules;
}
}
并在 View 中添加
{!! JsValidator::formRequest('App\Http\Requests\InvoiceRequest') !!}
这些验证并显示错误消息以及我动态添加到 View 中的输入数组的位置。
关于javascript - 如何使用 proengsoft/laravel-jsvalidation 和 Laravel 5 验证数组输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39709997/
我有一个 js 文件夹,我想使用 gulp 处理它。但是,当存在语法错误时,gulp trace 的输出不会指定出现错误的文件。 现在我的 gulpfile 看起来像这样: var gulp = re
我正在使用 laravel-jsValidation,https://github.com/proengsoft/laravel-jsvalidation我的问题是只使用了我的规则列表中的第一条规则。
我使用 proengsoft/laravel-jsvalidation结合自定义 FormRequest 和我通过服务提供商中的 Validator::extend(...) 定义的自定义验证规则。这
我正在使用 proengsoft/laravel-jsvalidation为了验证我的自定义表单请求,但它对我不起作用,它给出了 ReferenceError: jQuery is not defin
我正在使用 chosen像这里一样在多选中转换一个简单的选择... {!! Form::label('media_formats', trans('medias::messages.valid_fo
您好,我正在尝试验证数组输入并选择如下: {!!Form::select('mmscod_id[]',['' =
我是一名优秀的程序员,十分优秀!