是否可以获取邮寄请求的正文?
示例
当我输入的用户名是var num = BigInt(1267508826984464384);
console.log(num); // logs 1267508826984464384n, with n representing that it's a BigInt type
var num = "1267508826984464384";
console.log(num); // logs 1267508826984464384
且传递的密码是123并且我在网站中提交帖子数据时,chrome网络工具会显示您发布该链接的链接以及请求的正文
我想要的是
当我运行代码时,特定的URL = = https://example.com/post,它将在运行时在特定的URL处打印发布数据的正文,并显示URL:https://example.com/post用户名:abc pass:123
,则不会打印