如何让谷歌浏览器重定向的请求显示请求数据内容

谷歌浏览器的开发者工具,针对重定向数据请求包是不显示的,请问有何种方法可以让其显示么?

下面是示例代码:

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 打开谷歌浏览器开发者工具
  • 选择 networkpreserver log 勾上
  • 点击 index.html 页面上的 提交
  • 在开发者工具 Filter 下选择 All 找到 index.php 请求
  • 你会发现 Status Code302,但是其请求数据内容并不会显示
阅读 8.5k
1 个回答

这种情况我一般是直接用Fiddler来抓包看的,可以考虑一下。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题