我在 Windows 7 中通过 Dropzone 上传文件时收到错误响应

I am getting bad response from file upload via Dropzone in window7

我正在使用 Dropzone js 来实现上传文件功能。 在我的系统中它工作正常配置 window 10,64 位和 firefox 64.0.2 64 位。 我的同事有相同的 firefox 版本但安装了 window 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。

我已经安装了卡巴斯基防病毒软件,但它阻止了我的 url 并得到了糟糕的回应,可能你的情况也会出现同样的问题。