作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将 post 请求中的文件发送到我的后端,它以状态 500 响应,因为请求中没有文件 --> 检查后,我的 formData 似乎是空的并且不包含任何文件.
这是我的功能:
createProductsByCsv(): void {
const self = this;
const setting: any = {
title: '<h5>Add Products By CSV file</h5>',
html:
'<div class="form-group row">\n' +
' <label class="col-sm-4 col-form-label">File</label>\n' +
' <div class="col-sm-8">\n' + '<input type="file" accept=".csv" name="csv-file" id="csv-file" class="form-control datepicker" placeholder="chose csv file">' +
' </div>\n' +
'</div>',
confirmButtonText: 'add the file',
focusConfirm: false,
showLoaderOnConfirm: true
};
setting.preConfirm = (text) => {
var file = $('#csv-file').prop('files')[0];
// console.log(file);
var formData = new FormData();
formData.append('file', file, file.name);
console.log(formData);
if(((file.name.split(".").length -1) > 1) && (file.name.endswith('.csv')))
return self.sweetAlert.error({title: 'Error', text: "Upload only files that ends with .csv and containe single dot otherwise it will be ignored !"});
else
return self.httpApi.post('/catalog/product/filetest',formData).toPromise()
.then(resp => {
if (resp.status == 200) {
self.sweetAlert.success({title: 'Success', text: JSON.stringify(resp.message )});
} else {
self.sweetAlert.error({title: 'Error', text: JSON.stringify(resp.message )});
}
})
.catch(msg => console.log('ERROR' + msg.message + ' ' + msg.message));
};
swal.queue([setting]); }
我做错了什么吗?
最佳答案
尝试这样:
.html
<input #fileInput type="file" accept=".csv" name="csv-file" id="csv-file" class="form-control datepicker" placeholder="chose csv file">
<button (click)="saveFile(fileInput)">Upload</button>
.ts
saveFile(fileInput) {
let fi = fileInput;
if (fi.files && fi.files[0]) {
let fileToUpload = fi.files[0];
let formData: FormData = new FormData();
formData.append("file", fileToUpload);
console.log(formData);
...
// http call
}
}
关于javascript - 以 Angular 将文件附加到 FormData 后无法上传文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59026523/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!