I have got an issue with ng-file-upload, I am using almost the same code as in example on GitHub, but when I try to upload a file i get this error:
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.
I am using latest version of ng-file-upload and angular 1.5.0 (but tested it with 1.4.7 too, same error). I just copied the example, so my HTML of directive with upload looks like:
<div>
<label>{{field.label}} <span ng-if="field.required" class="text-red">*</span></label>
<p ng-show="field.help">
{{field.help}}
</p>
Drop File:
<div ngf-drop ngf-select ng-model="files" class="drop-box"
ngf-drag-over-class="'dragover'" ngf-multiple="true" ngf-allow-dir="true"
accept="image/*,application/pdf"
ngf-pattern="'image/*,application/pdf'">Drop pdfs or images here or click to upload</div>
<div ngf-no-file-drop>File Drag/Drop is not supported for this browser</div>
Files:
<ul>
<li ng-repeat="f in files">{{f.name}} {{f.$error}} {{f.$errorParam}}</li>
</ul>
Upload Log:
<pre>{{log}}</pre>
</div>
My upload service:
scope.$watch('files', function() {
scope.upload(scope.files);
});
scope.log = '';
scope.upload = function(files) {
if (files && files.length) {
for (var i = 0; i < files.length; i++) {
var file = files[i];
if (!file.$error) {
Upload.upload({
url: 'https://angular-file-upload-cors-srv.appspot.com/upload',
data: {
file: file
}
}).progress(function(evt) {
var progressPercentage = parseInt(100.0 * evt.loaded / evt.total);
scope.log = 'progress: ' + progressPercentage + '% ' +
evt.config.data.file.name + '\n' + scope.log;
}).success(function(data, status, headers, config) {
$timeout(function() {
scope.log = 'file: ' + config.data.file.name + ', Response: ' + JSON.stringify(data) + '\n' + scope.log;
});
});
}
}
}
};
And I am including shim before angular.js:
<script type="text/javascript" src="vendor/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="vendor/datatables/media/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="vendor/ng-file-upload/ng-file-upload-shim.min.js"></script>
<script type="text/javascript" src="vendor/angular/angular.js"></script>
...
<script type="text/javascript" src="vendor/ng-file-upload/ng-file-upload.js"></script>
<script type="text/javascript" src="src/app/app.js"></script>
<script type="text/javascript" src="src/app/client/client.js"></script>
Any idea what could be wrong?
Ok, the problem was caused by PACE.js library (JS progress bar for XHR requests), solution is removing it, or apply this patch - https://github.com/danialfarid/ng-file-upload/issues/98