如何将参数传递给该 .jsp 文件?

发布于 2024-12-22 21:33:20 字数 557 浏览 0 评论 0 原文

我想将变量传递给 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);
}

圣诞快乐!

I want to pass a variable to ContentList.jsp.... how do I do that? Can I add it to the dispatcher or the request? Is the response a reference? So if I add the parameter to the request object, will it already be accessible within 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);
}

Merry Christmas!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

白云悠悠 2024-12-29 21:33:20

您可以通过使用设置参数

request.setAttribute()

,然后分派请求,并在 JSP 中使用以下命令检索它

request.getAtrribute()

You can set the parameter by using

request.setAttribute()

then dispatch the request and in JSP you retrieve it with

request.getAtrribute()
你在看孤独的风景 2024-12-29 21:33:20

我想你可以尝试ContentList.jsp?paramName=paramValue。

I think you may try ContentList.jsp?paramName=paramValue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文