如何在 JavaScript 中访问请求内容正文中的查询参数?
如果我使用 GET 请求页面,那么我可以使用 window.location.search 从 javascript 访问任何查询参数。 当页面是 POST 结果时,是否有类似的方法来访问请求内容正文中而不是请求位置中的查询参数?
If I use a GET to request a page, then I can access any query parameters from javascript using window.location.search. Is there a similar way to access query parameters which are in the request content body rather than the request location, when the page is a result of a POST?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为数据是在服务器端处理的,所以客户端(JS 所在的地方)无法访问这些变量。
Because the data is being handled on the server side, the client (where JS lives) has no access to these variables.