图像的本机本地文件系统存储

时间:2019-11-21 19:07:42

标签: react-native react-native-fs

作为一项学习练习,我正在编写一个基于react-native-cli的照片应用程序,该应用程序可以在离线模式下工作。我的意思是,应用程序提供了一种使用相机拍照或从内置画廊中选择照片并将其存储在本地文件系统中的方法,该目录系统的目录路径存储在领域数据库中。以下是我的堆栈,

System: Ubuntu Linux,
react-native-cli: 2.0.1
react-native: 0.61.4,
realm@3.4.2,
react-native-image-picker@1.1.0

使用react-native-image-picker,我可以选择一张照片,也可以拍摄其详细信息从图像选择器存储在响应对象中的照片,例如: response.data(图像数据)和response.uri

 ImagePicker.showImagePicker(options, (response) => {
  if (response.didCancel) {
    alert('User cancelled image picker');
  } else if (response.error) {
    alert('ImagePicker Error: ', response.error);
  } else {
    const source = { uri: response.uri };
    const sourceData = response.data;

    this.setState({
      imageSourceData: source,
    });

  }
});

In Main.js I've a simple view,
import React, { Component } from 'react';

function Item({ item }) {
  return (
    <View style={{flexDirection: 'row'}}>
      <Text>{item.picureName}</Text>
    </View>
    <Image source={uri: ....????} />   <------------- How this would work?
  )
}

export default class Main extends Component {
  state = {
    size: 0,
    pictureName: null,
    picureLocation: null,
    picureDate: new Date(),
    imageSourceData: '',
    picures: []
  }

  componentDidMount() {
    Realm.open(databaseOptions)
      .then(realm => {
      const res = realm.objects(PICTURE_SCHEMA);
      this.setState({
        pictures: res
      })
    });
  }

  render() {
    return(
      <View>
        <Image source={uri: 'data:image/jpeg;base64,' + this.state.imageSourceData}
           style:{{width: 50, height:50}}/>
        <FlatList
         data={this.state.pictures}
         renderItem={({ item }) => <Item item={item} />}
         keyExtractor={item => item.pictureID}
      >
      </View>
    )
  }
}

从ImagePicker获取图像后,我需要执行以下操作

1)将此数据存储在设备上的文件中并获取文件位置。

2)将位置以及其他元数据存储在领域对象中

  saveButton() {
      // Store the imageSourceData into a file on a device,
      // Get the fileLocation
      // update state.picureLocation property 

      this.addOnePicture() 
  }

  addOnePicture() {
    var obj = new Object();
      obj = {
        PicureID: this.state.size + 1;
        PictureName: this.state.pictureName,
        PictureDate: this.state.pictureDate,
        PicureLocation: this.state.picureLocation
      };
    Realm.open(databaseOptions)
      .then(realm => {
        realm.write(() => {
        realm.create(PICTURE_SCHEMA, obj);
        this.setState({ size: realm.objects(PICTURE_SCHEMA).length });
      });
    })
  }

3)可以读取领域对象列表以在“ componentDidMount()挂钩”中的平面列表中显示数据

这是一段代码,但我希望它很清楚。我非常感谢您提供的有关可能的代码块的帮助/建议,

1)您如何将数据(imageSourceData)存储到本地文件,基本上填写saveButton()(我当时在考虑使用react-native-fs包。这是个好主意吗?)

2)如何在视图中显示该图像?我需要读取FlatList中呈现的内容吗?图片语法是什么样的(请检查Item组件代码)。

1 个答案:

答案 0 :(得分:0)

react-native-fs效果很好。