#uniapp
Read more stories on Hashnode
Articles with this tag
总结:uni.request 不支持 formData 类型的数据,无论是设置 header 还是 new formData 都会被转成 json 提交。 解决方法是使用 uni.uploadFile ,以下是封装为 Promise 的示例 : function post<T>(data: any)...