使用 Rails API 上传 React Native 文件


我正在使用 react native 和 Rails

作为 API 构建一个移动应用程序,我在上传图像时遇到问题 我使用 react-native-image-picker 库在 IOS 和 XMLHttRequest 中上传相机胶卷图像以连接到 API 端点并在 Rails 中上传文件我使用了默认的载波设置。

当我尝试从邮递员上传时,它正在工作,但从反应本机它不是。 以下是我在 react 本机上传请求中的代码:

ImagePicker.launchImageLibrary(options, (response) => {
      if (response.didCancel) {
        console.log('User cancelled photo picker');
      }
      else if (response.error) {
        console.log('ImagePicker Error: ', response.error);
      }
      else if (response.customButton) {
        console.log('User tapped custom button: ', response.customButton);
      }
      else {
        var source;
        // You can display the image using either:
        //source = {uri: 'data:image/jpeg;base64,' + response.data, isStatic: true};
        //Or:
        if (Platform.OS === 'android') {
          source = {uri: response.uri, isStatic: true};
        } else {
          source = {uri: response.uri.replace('file://', ''), isStatic: true};
        }
        var photo = {
          uri: source.uri,
          type: 'image/jpeg',
          name: response.fileName
        }
        var xhr = new XMLHttpRequest();
        var body = new FormData();
        body.append('authToken', token);
        body.append('avatar', photo);
        xhr.open('POST', uri);
        xhr.send(body)

我解决了我的问题,我使用了fetch而不是XMLHttpRequest和

相关内容

  • 没有找到相关文章

最新更新