kenadet
kenadet

Reputation: 255

Get errror "Unsupported ContentType: application/vnd.ms-excel" when upload file in angular

I tried to upload CSV file in angular 5 using the method stated here: https://stackoverflow.com/a/45442595/6105852

but got the errror "Unsupported ContentType: application/vnd.ms-excel". I will appreciate any help with this.

Upvotes: 0

Views: 1449

Answers (1)

kenadet
kenadet

Reputation: 255

I fixed it by wrapping the csv file in a Blob object as follow:

formData.append('file', new Blob([file], {type: 'text/csv'}), file.name);

And it worked.

Upvotes: 1

Related Questions