如何将参数传递给该 .jsp 文件?
我想将变量传递给 ContentList.jsp...我该怎么做?我可以将其添加到调度程序或请求中吗?回复有参考意义吗?因此,如果我将参数添加到 request
对象中,它是否可以在 ContentList.jsp
中访问?
public void loadView (HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
RequestDispatcher dispatcher = request.getRequestDispatcher("ContentList.jsp");
response.setContentType("text/html;charset=UTF-8");
System.out.println("MyServlet::LoadView() success");
dispatcher.forward(request, response);
}
圣诞快乐!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过使用设置参数
,然后分派请求,并在 JSP 中使用以下命令检索它
You can set the parameter by using
then dispatch the request and in JSP you retrieve it with
我想你可以尝试ContentList.jsp?paramName=paramValue。
I think you may try ContentList.jsp?paramName=paramValue.