Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 curl 登录网站。所以我想知道如何在页面上找到表单发送的字段。
有没有我可以使用的特殊插件。我在谷歌上读到你可以使用 Ctrl+Shift+I 但是我在哪里可以看到它。我只看到这个
而对于火狐?
使用 chrome 开发人员工具,转到网络选项卡。
然后找到第一个请求文件,通常是索引或类似的东西。
可以在请求标头上看到 GET 变量。虽然 POST 参数可以在下面的表单正文中找到。
chrome 中的 POST 表单请求示例:
来自 stackoverflow 站点的 GET 请求示例:
您可以在网络选项卡中检查标题信息。