HarmonyOS 鸿蒙Next http.createHttp上传图片文件
HarmonyOS 鸿蒙Next http.createHttp上传图片文件
参考http 接口请求上传文件,请求的header中设置 contentType: ‘multipart/form-data’
filePath路径为:internal://cache/issue/report1724916438200.jpg
上传图片失败。
帮忙看下使用http上传文件是否有问题,后端排查是少了图片文件。
使用request.uploadfile方法上传文件,测试返回上传成功了,但是返回的打印日志中只有图片在本地的信息,目前需求是需要在调用接口上传成功后拿到接口返回的图片路径,request.uploadfile是否支持?
设置options.multiFormDataList =[
{
name: ‘file’,
filePath: filePath,
contentType: ‘image/jpeg’,
remoteFileName: fileName
}
]
filePath路径为:internal://cache/issue/report1724916438200.jpg
上传图片失败。
帮忙看下使用http上传文件是否有问题,后端排查是少了图片文件。
使用request.uploadfile方法上传文件,测试返回上传成功了,但是返回的打印日志中只有图片在本地的信息,目前需求是需要在调用接口上传成功后拿到接口返回的图片路径,request.uploadfile是否支持?
更多关于HarmonyOS 鸿蒙Next http.createHttp上传图片文件的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html
2 回复
请使用 on('headerReceive') 回调,参考:https://developer.huawei.com/consumer/cn/doc/harmonyos-faqs-V5/faqs-local-file-manager-24-V5
更多关于HarmonyOS 鸿蒙Next http.createHttp上传图片文件的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html