作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 html 中,我有:
name="file" type="file"
accept=".csv"
$event.target.files.item(0);
uploadCSVFile( file) {
const uploadedFile = new FormData();
uploadedFile.append( 'file', file, file.name);
const url = `MyURL`;
return this.http.post(url, uploadedFile);
}
{headers: new HttpHeaders().append('Content-Type', 'text/csv')}
最佳答案
该问题与 MIME 类型不匹配有关。跨平台的文件 MIME 类型不被识别为相同。 OSX 中的 .csv 文件被识别为 text/csv,而在 Windows 中它被识别为 application/vnd.ms-excel。
这是解决方案 - 更改行:
uploadedFile.append( 'file', new Blob([file], { type: 'text/csv' }), file.name);
关于javascript - 如何在 Angular 中通过 REST API 上传 CSV 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60092152/
我是一名优秀的程序员,十分优秀!