格式是正确的,我使用的上传代码:
ImageCropPicker.openPicker({
cropping: true,
cropperCircleOverlay: true,
mediaType: 'photo',
cropperChooseText: '截取',
cropperCancelText: '取消',
}).then((image) => {
console.log(image);
const name = image.filename;
const data = {blob: {uri: image.sourceURL}};
const metaData = image.mime;
const avatar = new AV.File(name, data, metaData);
avatar.save().then(
(file) => {
console.log('success');
},
(error) => {
console.log('error:', error);
},
);
});
error: "invalid multipart format: no multipart boundary param in Content-Type"
这个错误表示上传请求的 Content-Type
头部中没有 boundary ,你的请求:
正常的请求:
你检查下是否手动设置了
Content-Type
?