Javascript是否具有页面转发和页面重定向的区别?

时间:2015-10-28 10:33:34

标签: javascript jsf

JSF确保

<h:commandXxx action="index.xhtml"> 

向前翻页,

<h:commandXxx action="index.xhtml?facesredirect=true">

到页面重定向。

如何使用Javascript执行这两项操作?

1 个答案:

答案 0 :(得分:1)

没有

只需以服务器完全应用所需行为的方式向服务器发送请求即可。

E.g。

location = "index.xhtml";
location = "pageWhichRedirectsToOtherPageWhichForwardsToThatPage.xhtml";