AJAXFILEUPLOAD报错: jQuery.handleError is not a function 解决方法
程序员文章站
2024-03-18 13:36:22
...
原因
handerError 只在jq 1.4.2 之前有,之后的版本都没有这个函数。
解决方法
将handler函数加到ajaxfileupload中。
即红框中的部分。
代码如下
handleError: function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error ) {
s.error.call( s.context || s, xhr, status, e );
}
// Fire the global callback
if ( s.global ) {
(s.context ? jQuery(s.context) : jQuery.event).trigger( "ajaxError", [xhr, s, e] );
}
},
上一篇: C语言——中国象棋(无图形化界面)
推荐阅读
-
AJAXFILEUPLOAD报错: jQuery.handleError is not a function 解决方法
-
php运行报错Call to undefined function curl_init()的最新解决方法
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open() 的解决方法,mcryptmoduleopen
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open() 的解决方法,mcryptmoduleopen_PHP教程
-
PHP加密3DES报错 Call to undefined function: mcrypt_module_open 的解决方法
-
Vue 报错TypeError: this.$set is not a function 的解决方法
-
【Flask】报错解决方法:AssertionError: View function mapping is overwriting an existing endpoint function: main.user
-
ajaxFileUpload 报这错jQuery.handleError is not a function
-
phpredis 报错 “Function Redis::setTimeout() is deprecated” 解决方法
-
Vue 报错TypeError: this.$set is not a function 的解决方法