- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 proengsoft/laravel-jsvalidation为了验证我的自定义表单请求,但它对我不起作用,它给出了 ReferenceError: jQuery is not defined
。即使在其文档中也搜索了很多有关该问题的信息,但找不到。感谢您的帮助。
//app view
@include('partials.nav')
@include('errors.errors')
@yield('content')
<!-- Scripts -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>
<!-- Laravel Javascript Validation -->
<script type="text/javascript" src="{{ asset('vendor/jsvalidation/js/jsvalidation.js')}}"></script>
要验证我的表单
//Upload Form
{!! Form::model($paper, ['method' => 'POST', 'id' =>'uploadPaper', 'action' => ['PaperController@papershow', $paper->id], 'files' => true]) !!}
@include('partials._paperForm',['submitBtn' => 'Show Paper Details'])
{!! Form::close() !!}
<!-- Laravel Javascript Validation -->
{!! JsValidator::formRequest('App\Http\Requests\PaperRequest'); !!}
我的自定义请求:
//App\Http\Requests\PaperRequest
public function rules()
{
return [ 'title'=> 'required|min:10',
'type' => 'required',
'keywords'=> 'required|min:10',
'abstract'=> 'required|min:50',
'dept_name' => 'required|min:3',
'file' => 'required|mimes:pdf|max:10000',];}
最佳答案
确保在加载依赖它的 validation.js
之前加载 jQuery。
来自文档:
This package also depends of jQuery, but it's not bundled into provided script, you have to include manually
To use this package you muts include jQuery and before the provided public/vendor/jsvalidation/js/jsvalidation.js script
https://github.com/proengsoft/laravel-jsvalidation/wiki/Dependencies
关于javascript - proengsoft/laravel-jsvalidation 引用错误 : jQuery is not defined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30709863/
我有一个 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[]',['' =
我是一名优秀的程序员,十分优秀!