未捕获的类型错误:无法使用 jQuery 验证读取未定义的属性“调用”

Posted

技术标签:

【中文标题】未捕获的类型错误:无法使用 jQuery 验证读取未定义的属性“调用”【英文标题】:uncaught TypeError: Cannot read property 'call' of undefined using jQuery validation 【发布时间】:2021-01-16 14:24:04 【问题描述】:

我尝试应用验证系统使用 jQuery 上传图片和多张图片,检查文件扩展名和文件大小,但它给了我错误 uncaught TypeError: Cannot read property 'call' of undefined

嗨,我尝试应用验证系统使用 jQuery 上传图片和多张图片,检查文件扩展名和文件大小,但它给了我错误 uncaught TypeError: Cannot read property 'call' of undefined

 $(document).ready(function () 
    jQuery.validator.setDefaults(
            debug: true,
            success: "valid"
          );
          $("#myform").validate(
            rules: 
              "image": 
                  extension: "jpg|jpeg|png|gif",
                  filesize:    "2048"
              ,
              "images[]": 
                  extension: "jpg|jpeg|png|gif",
                  filesize:    "2048"
              ,

            
          );
   
);  
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>rules</title>
    
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
        <script src="https://cdn.jsdelivr.net/npm/jquery-validation@1.19.2/dist/jquery.validate.js"></script>
    
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
    
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
    
    </head>
    <body>
    <div class="container">
        <form id="myform">
    
        <div class="form-group" id="divim">
            <label>image annonce<span class="text-hightlight">*</span></label>
            <input type="file" name="image" class="form-control @error('image') is-invalid @enderror" required autocomplete="image">
        </div>
        <div class="form-group" id="divims">
            <label>images annonce<span class="text-hightlight">*</span></label>
            <input type="file" name="images[]" class="form-control @error('images') is-invalid @enderror" required autocomplete="images" multiple>
        </div>
    
        <button class="btn btn-theme">valider</button>
        </form>
     </div>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
    </body>
    </html>

【问题讨论】:

【参考方案1】:

运行您的代码,我看到以下异常被抛出:

Exception occurred when checking element , check the 'extension' method. TypeError: Cannot read property 'call' of undefined

默认情况下,扩展方法似乎不包含在 validate 插件中。 这是您需要包含在 html 中的单独脚本。

包括&lt;script src="https://cdn.jsdelivr.net/npm/jquery-validation@1.19.2/dist/additional-methods.js"&gt;&lt;/script&gt; 为我修复了它。

浏览jQuery验证插件的文档,没有看到filesize的方法。请参阅https://jqueryvalidation.org/jQuery.validator.addMethod/ 自己创建一个。应该是直截了当的。

例如:

jQuery.validator.addMethod('filesize', function (value, element, arg) 
  // value -> name of the file being uploaded
  // element.files[0].size -> size of file being uploaded
  // arg -> 2048
  // Do some validation of filesize and return true or false
);

【讨论】:

【参考方案2】:

将此代码添加到您的附加方法.js 文件中。

$.validator.addMethod('fileSize', function (value, element, param) 
    return this.optional(element) || (element.files[0].size <= param)
, 'default message');

【讨论】:

以上是关于未捕获的类型错误:无法使用 jQuery 验证读取未定义的属性“调用”的主要内容,如果未能解决你的问题,请参考以下文章

datatables jquery - 未捕获的类型错误:无法读取未定义的属性“显示”

未捕获的类型错误:无法读取 JQuery DataTable 未定义的属性“mData”

未捕获的类型错误:无法读取未定义的属性“msie” - jQuery 工具

未捕获的类型错误:无法读取 jquery 滑块中未定义的属性“addClass”

jquery-ui.js:8056 未捕获类型错误:无法读取未定义的属性“左侧”

未捕获的类型错误:无法读取未定义的属性“ui”。选择croparea时出现JQuery JCrop问题