如何让谷歌浏览器重定向的请求显示请求数据内容
谷歌浏览器的开发者工具,针对重定向数据请求包是不显示的,请问有何种方法可以让其显示么?
下面是示例代码:
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form method="post" action="index.php">
<input name="name" type="text" value="beiwee" />
<button type="submit">提交</button>
</form>
</body>
</html>
index.php
<?php
header('Location: console.php?name='.$_POST['name']);
exit;
console.php
<?php
header('Content-Type: text/html; charset=utf-8');
exit('hello '.$_GET['name']);
重现步骤
- 配置一个测试域名
test.com
指向index.html
- 访问
test.com
并按F12
打开谷歌浏览器开发者工具 - 选择
network
将preserver log
勾上 - 点击
index.html
页面上的提交
- 在开发者工具
Filter
下选择All
找到index.php
请求 - 你会发现
Status Code
为302
,但是其请求数据内容并不会显示
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这种情况我一般是直接用Fiddler来抓包看的,可以考虑一下。