We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i upload a file with chrome or ff , ie 10 11 everything is fine but not with ie9
my problem : i have an endpoint that send an error (in order to reproduce the bug) like this :
@RequestMapping(method = RequestMethod.POST) public ResponseEntity<String> handleFileUpload(@RequestParam("name") String name, @RequestParam("file") MultipartFile file) { return new ResponseEntity<>("Error when uploading file", HttpStatus.BAD_REQUEST);
and in js i have this :
file.upload({ url: '/api/upload', headers: { Authorization: 'Bearer ' + this.get('session.content.access_token'), Accept: 'text/plain' } }).then((response) => { this.sendAction('uploadSuccess', response.body, this.get('model')); }, (errors) => { this.sendAction('uploadError', errors); });
but errors parameter is not as i expected :
in chrome i have this :
And in IE 9 i have this :
The text was updated successfully, but these errors were encountered:
Oh dear. I think this might require setting up sauce to test against IE9.
Sorry, something went wrong.
No branches or pull requests
When i upload a file with chrome or ff , ie 10 11 everything is fine but not with ie9
my problem : i have an endpoint that send an error (in order to reproduce the bug) like this :
and in js i have this :
but errors parameter is not as i expected :
in chrome i have this :
And in IE 9 i have this :
The text was updated successfully, but these errors were encountered: