我正在使用react-native fetch-blob库将文件提取到应用程序中。这是实现的代码:
RNFetchBlob.config(platformConfig).fetch('GET', url).then((res) => {
console.log('---->', res)
if (Platform.OS=='android') {
return `file://${res.path()}`;
} else {
return res.path();
});
答案 0 :(得分:0)
响应标头位于响应信息对象
上res.info().headers
来自:https://github.com/wkh237/react-native-fetch-blob/wiki/Classes#user-content-rnfetchblobresponseinfo