1

我正在为我的菜单链接使用 p:commandlink.. 问题是浏览器中的 url 没有被操作中提供的页面刷新..

这是我的代码...

任何帮助

                    <li><a href="#">Masters</a>
                        <ul>
                            <li><p:commandLink action="ParcelMaster1.xhtml" value="ParcelMaster" /></li>
                            <li><p:commandLink action="ZoneMaster1.xhtml" value="ZoneMaster" ajax="false"/></li>
                            <li><p:commandLink action="PropertyFlatMaster1.xhtml" value="PropertyFlatMaster" ajax="false"/></li>
                            <li><p:commandLink action="WardMaster1.xhtml" value="WardMaster" ajax="false"/></li>
                            <li><p:commandLink action="MaMaster1.xhtml" value="MAMaster" ajax="false"/></li>
                            <li><p:commandLink action="PropertyParentMaster.xhtml" value="PropertyParentMaster" ajax="false"/></li>
                            <li><a href="" title="">Usage Types</a></li>
                            <li><a href="" title="">Custom Types</a></li>
                        </ul></li>
4

1 回答 1

1

您必须添加ajax = "false"到您的commandLink. 默认情况下它是ajax 调用,它不能重定向。还可以尝试添加?faces-redirect=true到您要重定向到的 url。

于 2013-09-23T07:10:51.670 回答