getRequestDispatcher(“/myURL”).forward(request, response) 的 cgi-bin 等价物是什么?
我使用 #!/bin/sh 作为我的语言。
I'm using #!/bin/sh as my language.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我使用 #!/bin/sh 作为我的语言。
I'm using #!/bin/sh as my language.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
进行重定向很容易。只需返回正确的 HTTP 标头,例如:
问题是用户将在浏览器中看到 URL 更改。
从技术上讲,“转发”是一个内部重定向,通常由您的“框架”(即您指定的 Servlet API)支持。我想要让“内部转发”在 #!/bin/sh 中工作,你需要做这样的事情(伪代码)
Doing a redirect would be easy. Just return the right HTTP header like:
The problem is that the user will see the URL change in their browser.
Technically "forward" is a internal redirect which is normally supported by your "framework" (ie the Servlet API that you specified). I guess to get an "internal forward" to work in #!/bin/sh you would need to do something like this (psuedocode)
我想只是这么称呼,
因为所有 CGI 数据都将在环境变量中(但不确定 POST 请求)
I guess just call that like
because all CGI data will be in the environment variables (not sure about POST request though)