文件上传后如何加载JSF页面?
我想要的是在执行文件上传后加载另一个页面。
我尝试将此代码放入处理文件上传的 bean 中:
return "<JSF Page Name>?faces-redirect=true"
但仍然没有运气......
what i want is to load another page after performing a fileUpload.
I tried to put this code in the bean which process the fileupload:
return "<JSF Page Name>?faces-redirect=true"
but still no luck...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法从操作侦听器方法内部进行导航。您只能从真正的 action 方法内部进行导航,该方法绑定到
UICommand
组件的action
属性。但是,您可以通过
ExternalContext#redirect()
:You can't navigate from inside an action listener method. You can only navigate from inside a real action method, the one which is bound to the
action
attribute of anUICommand
component.You can however send a redirect programmatically by
ExternalContext#redirect()
: