Ng文件上传进度条不能与offlinejs一起使用

时间:2016-01-21 13:29:17

标签: javascript angularjs ng-file-upload

我在家中使用ng-file-upload进行文件上传,好消息是它工作正常,我可以上传文件。

问题是进度条仅在我禁用index.html中的offlinejs时显示。看起来像offlineJS我阻止了来自后调用的进度回调。

这是我得到的错误消息:

Error: Failed to execute 'setRequestHeader' on 'XMLHttpRequest': 'function (xhr) {
          if (!xhr || !(xhr instanceof XMLHttpRequest)) return;
          config.__XHR = xhr;
          if (config.xhrFn) config.xhrFn(xhr);
          xhr.upload.addEventListener('progress', function (e) {
            e.config = config;
            notifyProgress(getNotifyEvent(e));
          }, false);
          //fix for firefox not firing upload progress end, also IE8-9
          xhr.upload.addEventListener('load', function (e) {
            if (e.lengthComputable) {
              e.config = config;
              notifyProgress(getNotifyEvent(e));
            }
          }, false);
        }' is not a valid HTTP header field value.
    at Error (native)
    at XMLHttpRequest.f.setRequestHeader (http://localhost:3000/lib/js/offline/offline.min.js:2:3272)

1 个答案:

答案 0 :(得分:0)

此问题已在最新版本的ng-file-upload!

中修复