【问题标题】:React Native image uploadReact Native 图片上传
【发布时间】:2017-06-29 06:09:47
【问题描述】:

我在从相机胶卷或 API 上传图像时遇到问题。这是我目前正在使用的代码。我能够从相机胶卷和相机中获取图像数据。我只是在将数据发布到服务器时遇到问题。我不知道我在哪里感到困惑。

import React, { Component } from 'react';
import {
  Text,
  View,
  PixelRatio,
  TouchableOpacity,
  Image,
  Platform,
  NativeModules,
  DeviceEventEmitter
} from 'react-native';
import { connect } from 'react-redux';
import ImagePicker from 'react-native-image-picker';
import { captureProflieAvitar } from '../../actions';

var RNUploader = NativeModules.RNUploader;
class NewCamera extends Component {
  state = {
    avatarSource: null,
    imgBase64: []
  }
  componentDidMount() {
    // upload progress
    DeviceEventEmitter.addListener('RNUploaderProgress', (data) => {
      const bytesWritten = data.totalBytesWritten;
      const bytesTotal = data.totalBytesExpectedToWrite;
      const progress = data.progress;
      console.log(bytesWritten, bytesTotal);
      console.log( "upload progress: " + progress + "%");
    });
}

  selectPhotoTapped() {
    const options = {
      quality: 0.75,
      maxWidth: 300,
      maxHeight: 300,
      storageOptions: {
      skipBackup: true
      }
    };
    ImagePicker.showImagePicker(options, (response) => {
      console.log('Response = ', 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 {
        let source;
        // You can display the image using either:
        source = { uri: 'data:image/jpeg;base64,' + response.data, isStatic: true };

        const temp = response.data;

        //Or:
        if (Platform.OS === 'android') {
          source = { uri: response.uri, isStatic: true };
        } else {
          source = { uri: response.uri.replace('file://', ''), isStatic: true };
        }

        this.setState({
          avatarSource: source,
          imgBase64: temp,
        });
      }
    });
  }

doUpload() {

    const files = {
            filepath: `data:image/png;base64,${this.state.imgBase64}`,
        };
    const opts = {
        url: 'https://central.tipflip.co?apior=MYAPIKEY&tfReqID3031&tfUserID=1&tfImage=',
        files,
        method: 'POST',
        headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
    };

    RNUploader.upload(opts, (err, response) => {
        if (err) {
            console.log(err);
            return;
        }
        const status = response.status;
        const responseString = response.data;
        const json = JSON.parse(responseString);
        console.log('upload complete with status ' + status);
    });
}
  render() {
    return (
      <View style={styles.container}>
        <TouchableOpacity onPress={this.selectPhotoTapped.bind(this)}>
          <View style={[styles.avatar, styles.avatarContainer, { marginBottom: 20 }]}>
          { this.state.avatarSource === null ? <Text>Select a Photo</Text> :
            <Image style={styles.avatar} source={this.state.avatarSource} />
          }
          </View>
        </TouchableOpacity>

        <TouchableOpacity
          style={{
          backgroundColor: 'yellow',
          width: 60,
          height: 20,
          marginTop: 20,
          justifyContent: 'center',
          alignItems: 'center' }}
          onPress={this.doUpload.bind(this)}
        >
          <Text>Upload</Text>
        </TouchableOpacity>

        <TouchableOpacity
        style={{
          backgroundColor: 'yellow',
          width: 60,
          height: 20,
          marginTop: 20,
          justifyContent: 'center',
          alignItems: 'center'
          }} onPress={this.props.cancel}
        >
          <Text>Cancel</Text>
        </TouchableOpacity>

      </View>
    );
  }
}
const styles = {
  container: {
    justifyContent: 'center',
    alignItems: 'center'
  },
  avatarContainer: {
    borderColor: '#9B9B9B',
    borderWidth: 1 / PixelRatio.get(),
    justifyContent: 'center',
    alignItems: 'center'
  },
  avatar: {
    borderRadius: 75,
    width: 150,
    height: 150
  }

};
export default connect(null, { captureProflieAvitar })(NewCamera);

【问题讨论】:

  • 电线的另一端会发生什么?
  • 我只是得到一个带有空数据的对象。我认为我的问题是我没有正确格式化帖子数据。
  • 我的 api 状态为 200,但数据未通过。
  • Content-Type 标头看起来很奇怪,您告诉服务器请求正文将是 application/x-www-form-urlencoded 数据,但显然这不是您发送给服务器的内容。
  • 你解决了吗?

标签: reactjs react-native


【解决方案1】:

这里是使用Fetch API上传图片的示例

var photo = {
  uri: user.profilePicture,
  type: 'image/jpeg',
  name: 'photo.jpg',
};

var form = new FormData();
form.append("ProfilePicture", photo);

fetch(
  Constants.API_USER + 'me/profilePicture',
  {
    body: form,
    method: "PUT",
    headers: {
      'Content-Type': 'multipart/form-data',
      'Authorization': 'Bearer ' + user.token
    }
  }
).then((response) => response.json())
.catch((error) => {
  alert("ERROR " + error)
})
.then((responseData) => {
  alert("Succes "+ responseData)
}).done();

学分 https://stackoverflow.com/a/36649457/5315786

【讨论】:

  • 你怎么确定它会是image/jpeg?如果没有,问题中引用的 ReactNative 或 ImagePicker 包如何能够得到它?
  • @Trip 使属性动态化,你可以使用这个: photo = { name: response.fileName, type: response.type, uri: Platform.OS === 'android' ? response.uri : respon.uri.replace('file://', ''), }
【解决方案2】:

如果有人尝试使用 React Native 将图像上传到 Laravel,试试这个。我的情况是我使用 react-native-image-crop-pickerAxios

//create object with uri, type, image name
var photo = {
    uri: IMAGE_PATH,
    type: 'image/jpeg',
    name: 'photo.jpg',
};

//use formdata
var formData = new FormData(); 
//append created photo{} to formdata
formData.append('image', photo);
//use axios to POST
axios({
    method: 'POST',
    url: api_url +  'customer/upload-avatar',
    data: formData,
    headers: {
        'Authorization': "Bearer  "  +  YOUR_BEARER_TOKEN,
        'Accept': 'application/json',
        'Content-Type': 'multipart/form-data;'    
    }}) .then(function (response) { console.log(response)})
    .catch(function (error) { console.log(error.response)
});

【讨论】:

猜你喜欢
  • 2018-06-08
  • 2018-11-24
  • 1970-01-01
  • 2020-04-01
  • 1970-01-01
  • 2019-03-26
  • 1970-01-01
  • 2019-02-05
  • 2015-08-24
相关资源
最近更新 更多