谷歌浏览器的开发者工具,针对重定向数据请求包是不显示的,请问有何种方法可以让其显示么?
下面是示例代码:
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
,但是其请求数据内容并不会显示
这种情况我一般是直接用Fiddler来抓包看的,可以考虑一下。