nervgh / angular-file-upload

[ALMOST NOT MAINTAINED] Angular File Upload is a module for the AngularJS framework
MIT License
3.44k stars 1.13k forks source link

FormData IE9 #419

Open GillesBodart opened 9 years ago

GillesBodart commented 9 years ago

Hello thank you for you service ! it saved me, but how can I do with IE9 who don't accept FormData ? for a post ?

regards Gilles

vadimcoder commented 8 years ago

you can append something in formData property manually:

      $scope.uploader = new FileUploader({
        scope: $scope,
        url: ...
        headers: ...,
        formData: [{
            key: 'my custom data'
        }],
      });