我越来越
错误:不支持同步 http 请求
但是我没有做任何http请求。我所做的只是试图解析一个本地 csv 文件。这是我的脚本:
import RNFS from 'react-native-fs';
import Papa from 'papaparse';
const mainBundlePath = RNFS.MainBundlePath;
const path = '/app/src/main/assets/data.csv';
const test = () => {
Papa.parse(mainBundlePath + path, {
download: true,
delimiter: '\t',
complete: function(results) {
console.log("results: ", results);
}
}
);
};
export default test;