我正在调用一个api及其其中包含用户名和密码的发布请求。现在,我想要的是获取响应标题内容类型。有没有一种方法可以获取带有值的后期请求的响应标头(并将其存储在本地存储中以备将来使用)。
答案 0 :(得分:0)
axios.get('url').then(function (response) {
console.log(response.headers)
});
您可以获取更多详细信息,例如:
console.log(response.data);
console.log(response.status);
console.log(response.statusText);
console.log(response.headers);
console.log(response.config);
答案 1 :(得分:0)
您可以使用chrome开发人员工具查看您的回复详细信息
1。访问URL并单击鼠标右键,然后选择“检查”
2。然后您将看到开发人员工具
3。选择“网络”标签并重新加载URL
4。右侧面板包含您页面请求的URL,然后选择URL。它将在左侧面板中显示标题