昨天我发布了一个关于必须按两次按钮才能使其工作的问题。我得到了很好的帮助,这是stackoverflow的标志,但问题仍然存在。我将代码减少到最低限度,但问题仍然存在。我仔细阅读了BalusC的建议,希望能在表单中找到表单。我肯定什么都看不到,所以我将发布我的代码,希望更多的眼睛能看到一些东西。
我有一个模板,我从欢迎中调用(登录部分)。这将转到具有命令按钮的 userInfo。这是我神秘地必须按两次的命令按钮。在第二次按下命令按钮时,我将转到 userPhoto。一切都被削减到最低限度,以便我可以发布它。
master.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:head>
<title>Master template</title>
</h:head>
<h:body>
<p:layout fullPage="true" >
<p:layoutUnit position="north" size="254">
Top
</p:layoutUnit>
<p:layoutUnit position="east" size="50" resizable="true">
Hello
</p:layoutUnit>
<p:layoutUnit position="south" size="30">
south
</p:layoutUnit>
<p:layoutUnit position="center">
<ui:insert name="AreaOne">Default text</ui:insert>
</p:layoutUnit>
</p:layout>
</h:body>
</html>
欢迎1.xhtml:
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<ui:composition template="master.xhtml">
<ui:define name="AreaOne">
<h:form id="form1">
<p:commandButton type="submit" value="Login" action="userInfo" />
</h:form>
<p:messages />
</ui:define>
</ui:composition>
</html>
最后但并非最不重要的 userInfo.xhtml 带有需要按下两次的按钮:
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<ui:composition template="master.xhtml">
<ui:define name="AreaOne">
<h:form id="formP">
<p:commandButton type="submit" value="photos" action="userPhoto" />
</h:form>
<p:messages />
</ui:define>
</ui:composition>
</html>
我没有看到嵌套在任何其他表单中的任何表单,但有些事情是错误的,我不知道是什么。也许 BalusC 是正确的,它与 ajax 有关,但我也没有看到。
感谢所有的帮助。宜兰
我在 userPhoto 页面上添加了一个按钮,该按钮返回到 userInfo 页面。登录按钮是唯一一个第一次按下时起作用的按钮。当我使用命令按钮在 userInfo 和 userPhoto 之间来回切换时,总是需要按 2 次。我将显示 userPhoto 的中心
<ui:composition template="master.xhtml">
<ui:define name="AreaOne">
<h:form id="form3">
<p:commandButton type="submit" value="home page" action="userInfo" />
</h:form>
<p:messages />
</ui:define>
</ui:composition>