如何从响应FetchBlob获取标头

时间:2018-06-15 15:31:40

标签: react-native

我正在使用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();
});

以下是回复: enter image description here

以下是Chrome开发者工具中响应的标题 enter image description here

1 个答案:

答案 0 :(得分:0)

响应标头位于响应信息对象

res.info().headers

来自:https://github.com/wkh237/react-native-fetch-blob/wiki/Classes#user-content-rnfetchblobresponseinfo