尝试在create-react-native-app项目中使用react-native-fs(expo)

时间:2017-12-21 10:37:38

标签: javascript android ios react-native react-native-fs

我尝试在我的应用中使用react-native-fs来上传文件等。 我按照文档的说明进行了安装,然后进行导入,并将此代码用于测试:

componentDidMount(){
    const path = RNFS.DocumentDirectoryPath + '/test.txt';
    console.log(path);
    // write the file
    RNFS.writeFile(path, 'Lorem ipsum dolor sit amet', 'utf8')
        .then((success) => {
            console.log('FILE WRITTEN!');
        })
        .catch((err) => {
            console.log(err.message);
    });
}

它直接让我犯了这个错误:

enter image description here ps:我通过create-react-native-app

创建了我的项目

任何想法?

1 个答案:

答案 0 :(得分:0)

您需要在项目中链接react-native fs。 在终端react-native链路react-native-fs

中运行它