背景
项目中文件和图片上传,后端要求用表单提交。
踩坑过程
一开始没有在官方文档上找到方法,使用了jquery的ajax进行处理。
解决方法
经过一番实践。发现了写法
return $http({
method: 'POST',
url: url + "organizations/" + _this.getOrgCode() + "/import",
data: formData,
headers:{ 'Content-Type': undefined }
});