使用 ICEFaces 时是否可以替代 FacesContext 来检索 GET 值?
我需要检索使用 URL 传递给页面的 2 个 GET 参数的值,问题是 FacesContext 仅在一组具有引用会话的页面中工作;在本例中,我使用 GET,因为 URL 是从电子邮件访问的,而不是从其他页面访问的。
我尝试了 FacesContext 方法:
FacesContext context = FacesContext.getCurrentInstance();
String login = context.getExternalContext().getRequestParameterMap().get("login");
String id = context.getExternalContext().getRequestParameterMap().get("idReunion")
但在尝试获取上下文时它返回 null,还有其他想法如何在不使用 FacesContext 的情况下完成相同的任务吗?
I need to retrieve the value of 2 GET parameters I pass to the page using the URL, the problem is that FacesContext just work within a group of pages with a referenced session; and in this case I'm using GET because the url is accessed from an e-mail and not from another page.
I tried the FacesContext approach:
FacesContext context = FacesContext.getCurrentInstance();
String login = context.getExternalContext().getRequestParameterMap().get("login");
String id = context.getExternalContext().getRequestParameterMap().get("idReunion")
But it returns null when trying to get the context, any other idea how I can accomplish the same without using FacesContext?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FacesContext
是正确的选择。我们将其用于您的应用程序并获取参数。您用“portlet”标记了您的问题。根据您的门户,您无法通过 url 直接将参数传递到您的应用程序。有时您需要特殊处理...
The
FacesContext
is the way to go. We are using it for your applications and are getting parameters as well.You flagged your questions with "portlet". Depending on your portal you cannot directly pass parameters to your application via the url. Sometimes you require special handling...