1

我正在编写一个 jsf 应用程序。这是我的代码:

注册.xhtml:

        <fieldset>
            <div>
              <h:outputLabel class="Float" for="username" value="Username"/>
              <h:inputText id="username" rendered="true" value="#{Register.username}" label="Username">
              <f:validateLength minimum="3" maximum="8"/>
              </h:inputText>
        </div>
        <div>
              <h:outputLabel class="Float" for="password" value="Passwort"/>
              <h:inputText id="password" rendered="true" value="#{Register.password}" label="Passwort">
                <f:validateLength minimum="3" maximum="8"/>
              </h:inputText>
            </div>
       </fieldset>

<div id="buttons">
  <h:form id="buttons">
    <h:commandButton id="enter" accesskey="r" value="Registrieren" action="#{Register.registerPlayer()}" immediate="true"/>
    <h:outputText value="#{msg.wrongpwd}" rendered="#{loginCtrl.loginfailed}" style="color: red"/>
    <h:messages style="color: red"/>
  </h:form>
</div>
</form>
...

注册.java:

public String getUsername() {
    return username;
}

public String getPassword() {
    return pwd;
}

public void registerPlayer() {
    this.nameList.add(getUsername());
    this.passwordList.add(pwd);
    System.out.println(getUsername() + " : " + pwd  + " :successfully registered!!!");
}

我的问题是当我按下按钮时得到输出:

null : null : 成功注册!!!

为什么是这样?

更新 1-----------------------------

好的,我使用了 h:form 标签,但仍然返回 null:

这是我认为jsf如何工作的循环:首先:在inputText中写入-> bean读取它->您可以操纵该值(例如,将其写入列表中)...

那个循环有什么问题?或者我的代码...

更新 2----------------------------- 我的设置方法:

public void setUsername(String username) {
    this.username = username;
}
public void setPassword(String pwd) {
    this.pwd = pwd;
}

它们遥不可及,但为什么呢?

4

1 回答 1

3

您的h:inputText字段必须在表单内。尝试以下操作:

<h:form>
    <fieldset>
        <div>
            <h:outputLabel class="Float" for="username" value="Username"/>
            <h:inputText id="username" rendered="true" value="#{Register.username}" label="Username">
                <f:validateLength minimum="3" maximum="8"/>
            </h:inputText>
        </div>
        <div>
            <h:outputLabel class="Float" for="password" value="Passwort"/>
            <h:inputText id="password" rendered="true" value="#{Register.password}" label="Passwort">
                <f:validateLength minimum="3" maximum="8"/>
            </h:inputText>
        </div>
    </fieldset>

    <div id="buttons">
        <h:commandButton id="enter" accesskey="r" value="Registrieren" action="#{Register.registerPlayer()}" immediate="true"/>
        <h:outputText value="#{msg.wrongpwd}" rendered="#{loginCtrl.loginfailed}" style="color: red"/>
        <h:messages style="color: red"/>
    </div>
</h:form>

现在表单包括inputText字段和commandButtons

于 2012-05-06T21:18:51.583 回答