我的图片上传适用于网络和应用程序博览会。但仅在一个 API 中显示我不知道它有什么问题。请帮忙。
这是我的代码
let result = await ImagePicker.launchImageLibraryAsync({
mediaTypes: ImagePicker.MediaTypeOptions.Images,
aspect: [4, 3],
allowsEditing: true,
});
// console.log(result);
if (!result.cancelled) {
let formData = new FormData();
formData.append("cwc_photo", {
uri: result.uri,
name: result.uri.split("/")[result.uri.split("/").length - 1],
type:
"image/" + result.uri.split(".")[result.uri.split(".").length - 1],
});
axios
.post(
`${global.addCwcPhoto}?token=${this.state.token}&cwc_id=${this.state.cwc_guid}`,
formData,
{
"Content-Type": "multipart/form-data",
}
)