解决Uploadify 3.2上传控件加载导致的GET 404 Not Found问题
Posted 改变
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Uploadify 3.2上传控件加载导致的GET 404 Not Found问题相关的知识,希望对你有一定的参考价值。
http://www.uploadify.com/forum/#/discussion/7329/uploadify-v3-bug-unecessary-request-when-there-is-no-button_image_url-set-/p1
原来问题的症结在于SWFUpload,这个是Uploadify调用供支持Flash上传用的,但是其没有对button_image_url进行判断,导致如果button_image_url为空的话就默认请求了当前根路径,修改的方法也比较简单,加个判断即可:
将jquery.uploadify.js中下面代码:
this.settings.button_image_url = SWFUpload.completeURL(this.settings.button_image_url);
修改成如下:
if (this.settings.button_image_url != "") {
this.settings.button_image_url = SWFUpload.completeURL(this.settings.button_image_url);
}
以上是关于解决Uploadify 3.2上传控件加载导致的GET 404 Not Found问题的主要内容,如果未能解决你的问题,请参考以下文章