Axios-从响应对象获取请求URI数据

时间:2019-12-13 13:31:49

标签: javascript node.js request axios

因此,我正在尝试将节点项目从使用 request.js 迁移到使用 axios.js

使用请求包时,我可以像这样从响应对象获取URI数据

request(req, (err, response) => {
  if (err) console.error(err);
  console.log(response.statusCode);
  console.log(response.request.uri);
  console.log(response.request.uri.hash);
  console.log(response.request.uri.host);
});

但是当我像这样使用axios

axios(req)
  .then(response => {
    console.log(response.status);
    console.log(response.request.uri);
  })
  .catch(err => console.error(err));

我对 response.request.uri

的定义是 undefined

所以,我使用axios软件包是否错误,还有另一种获取我想要的信息的方法,或者axios只是不支持该信息?

2 个答案:

答案 0 :(得分:0)

您可以通过访问response.config.url response.request.responseURL来访问它,尽管如果只想要URI,则需要使用正则表达式,也可以通过使用数组来使用JS。或字符串方法。

示例:

const axios require('axios');
const url = require('url');

axios(req)
  .then(response => {
    const parsedURL = url.parse(response.config.url);
    console.log(parsedURL.host);
  })
  .catch(err => console.error(err));

如果您不需要解析的URL信息并且不需要其他软件包:

// Remove the URL Protocol (https:// & http://) using regex. 
const removeHttpProtocol = (url) => url.replace(/(^\w+:|^)\/\//, '');

axios(req)
  .then(response => {
    console.log(const responseURI = removeHttpProtocol(response.config.url);
    console.log(responseURI);
  })
  .catch(err => console.error(err));

答案 1 :(得分:0)

url获得res.config.url后,添加到@Matt Weber的答案中,您可以使用url.parse直接解析它并从那里访问.hash .query

例如:

const url = require('url')
console.dir(url.parse('protocol://host.com/?q=q1#hash'));

// Outputs:
Url {
  protocol: 'protocol:',
  slashes: true,
  auth: null,
  host: 'host.com',
  port: null,
  hostname: 'host.com',
  hash: '#hash',
  search: '?q=q1',
  query: 'q=q1',
  pathname: '/',
  path: '/?q=q1',
  href: 'protocol://host.com/?q=q1#hash'
}