现在我试图在我的 Struts 1.3 Web 应用程序中使用一些参数从动作类重定向到动作类,这是我的代码
ActionRedirect redirect = new ActionRedirect(mapping.findForward(forwardPage));
redirect.addParameter("method", forwardPage);
redirect.addParameter("username", "user");
redirect.addParameter("password", "PWD");
redirect.addParameter("forwardPage", "success");
return redirect;
它工作正常,但所有参数都显示在地址栏中,我如何将其重定向为 POST 请求参数(隐藏参数)