在iOS上上传本机文件时出现奇怪的图像数据

时间:2020-03-19 11:00:10

标签: ios react-native multer react-native-image-picker

const data = new FormData();
    data.append('photo', {
      name: pic.fileName,
      type: pic.type,
      uri: Platform.OS === 'android' ? pic.uri : pic.uri.replace('file://', ''),
      // data: pic.data,
    });

这是我发送到后端的表单数据。在后端,multer处理图像。

但是我得到的图像数据如下,无法用于存储在服务器文件夹中

This is the response i am getting on the server side

0 个答案:

没有答案