我在使用Xcode在my_project / assets下创建的资产文件夹中有文件
我通常可以通过以下方式访问模板WebView中的文件:
source={{uri: './assets/myfolder/index.html'}}
但是我无法使用react-native-fs将此文件复制到DocumentsDirectory:
RNFS.copyFile('./assets/myfolder/index.html', RNFS.DocumentDirectoryPath + '/index.html').then((result) => console.log('DONE')).catch((error) => console.log(error, 'ERROR'));
错误:由于没有打开文件“ index.html”,因此无法打开 这样的文件。
在android上,copyFileAssets可以正常工作。