RN 如何选择和上传图片和视频?
来源:17-2 React Native升级与适配指南【后期开发避雷】

慕勒1451071
2019-12-05
需求是有两个添加框,分别添加手机里的视频和照片并上传 一个是视频 一个是照片
这各自需要用哪个插件
写回答
1回答
-
图片/视频选择用:
https://github.com/react-native-community/react-native-image-picker
图片/视频上传:
handleUploadPhoto = () => { fetch("http://localhost:3000/api/upload", { method: "POST", body: createFormData(this.state.photo, { userId: "123" }) }) .then(response => response.json()) .then(response => { console.log("upload succes", response); alert("Upload success!"); this.setState({ photo: null }); }) .catch(error => { console.log("upload error", error); alert("Upload failed!"); }); };
参考:https://heartbeat.fritz.ai/how-to-upload-images-in-a-react-native-app-4cca03ded855
112019-12-23
相似问题