我使用Dropzone js上传文件funxtionality.
在我的系统中它运行正常,配置窗口10,64位,使用firefox 64.0.2 64位.
我的同事有相同的firefox版本,但安装了窗口7.
并产生不良反应.
我正在调用ajax方法并从服务器获取响应.
在Windows 7中的FireFox中我的同事个人电脑中的错误响应:
GIF89a\u0001\u0000\u0001\u0000�\u0000\u0000���\u0000\u0000\u0000!�\u0004\u0001\u0000\u0000\u0000\u0000,\u0000\u0000\u0000\u0000\u0001\u0000\u0001\u0000\u0000\u0002\u0002D\u0001\u0000;
在我的电脑里
Windows 10中FireFox的成功响应.
我的客户端代码,
function dropzonecall(allowcontenttype) {
Dropzone.options.UploadForm = {
method:'post',
acceptedMimeTypes: allowcontenttype,
clickable: true,
maxFiles: 1,
param: { adXmlId: AdXmlId, adType: AdType },
init: function () {
this.on("success", function (file, response) {
displayUploadedFileTab(response);
});
this.on("error", function (file, response) {
alert(response);
});
}
};
}
服务器端代码,
return Json(new { html = "FileName" });
最佳答案 我已经遇到过这个问题,
检查阻止URL的防病毒软件.
我已经安装了卡巴斯基防病毒软件,这会阻止我的网址并得到错误的响应,可能会出现同样的问题.