1

我有一个进入添加页面的列表页面。添加页面有一个名称文本框,其值绑定到会话范围的 bean

列表页面有一个添加按钮,该按钮通过操作方法进入添加页面。此操作方法清除名称文本框绑定到的对象。

我还在添加页面上有一个取消按钮,该按钮绑定到一个操作方法,该方法再次清除名称文本框所绑定的值。

如果没有设置为立即,这一切正常。

但是,如果我将取消按钮设置为立即,如果我在名称字段中输入值,然后单击取消,则触发操作方法并清除支持 bean 中的对象并转到列表页面。如果我然后单击添加,则操作方法会再次清除对象(忽略它是否是最佳方法),然后转到添加页面。我现在希望添加页面的名称文本框为空,但不是吗?!当然,由于添加按钮不是立即的,所以值应该重新绑定并为空?

下面是列表页面上添加按钮的相关 XHTML

<h:commandButton id="addButton"
                 value="Add"
                 action="#{myBean.gotoAdd}"/>

下面是添加页面上输入框的相关 XHTML(myBean 是会话范围的),然后是添加页面上的取消按钮:

<h:inputText id="newName"
             value="#{myBean.newObject.name}"
             binding="#{myBean.newNameInput}"
             styleClass="name" />

<h:commandButton id="cancelButton"
                 value="Cancel" immediate="true"
                 action="#{myBean.cancelAdd}"
                 onclick="return confirm('You sure?');"/>
4

4 回答 4

2

我几乎从不使用binding标签的属性,除非我需要确定列表中的哪个项目已经对其触发了操作,所以我对它的用途并不是特别了解。但是我知道,如果不使用binding您的代码,很可能会按您的预期工作,所以我的期望是javax.faces.component.UIxxx您绑定到的任何对象都不会正确重置。

于 2010-03-31T19:00:20.147 回答
1

我现在有非常相似的问题。

除了删除绑定和/或立即属性外,请尝试在组件上调用 setSubmittedValue() 并从单击“添加”按钮时调用的操作绑定。

唉,即使它对您有所帮助,您仍然必须在任何可能导致在取消后显示相同组件的操作中执行此操作。

这就是为什么我仍在尝试找出更好的解决方案...

于 2010-06-08T15:28:05.203 回答
0

如果您使用 immediate="true" 那么值将被保留,这就是参数的工作方式。您应该查看以下链接:

http://wiki.apache.org/myfaces/How_The_Immediate_Attribute_Works

http://wiki.apache.org/myfaces/ClearInputComponents

于 2010-04-01T05:14:05.560 回答
0

好的,这是我从头开始做的一个例子。我有两个取消按钮,一个是立即的,一个不是。重现步骤示例:

  • 转到 james-list 页面并单击添加
  • 添加页面显示为空字段。输入所有字段的值,然后单击添加。
  • 列表页面显示并更新以包含新人员。单击添加。
  • 添加页面显示为空字段。输入所有字段的值并单击取消(立即)
  • 列表页面显示并且未更改。单击添加。
  • 显示添加页面,但是字段并不像我期望的那样为空。单击取消。
  • 列表页面显示并且未更改。单击添加。
  • 显示添加页面,现在字段不为空。

詹姆斯.java:

package com.jamiebarrow;

import java.util.ArrayList;
import java.util.List;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import javax.faces.component.UIComponent;

@ManagedBean
@SessionScoped
public class James {

  private UIComponent idComponent;
  private UIComponent firstNameComponent;
  private UIComponent lastNameComponent;

  public UIComponent getIdComponent() {
    return idComponent;
  }

  public void setIdComponent(UIComponent idComponent) {
    this.idComponent = idComponent;
  }

  public UIComponent getFirstNameComponent() {
    return firstNameComponent;
  }

  public void setFirstNameComponent(UIComponent firstNameComponent) {
    this.firstNameComponent = firstNameComponent;
  }

  public UIComponent getLastNameComponent() {
    return lastNameComponent;
  }

  public void setLastNameComponent(UIComponent lastNameComponent) {
    this.lastNameComponent = lastNameComponent;
  }

  private List<Person> personResults;

  private Person person;

  public James() {
    personResults = new ArrayList();
    personResults.add(new PersonBuilder(1, "Bob", "Uncle").build());
    personResults.add(new PersonBuilder(2, "Jack", "Black").build());
  }

  public List<Person> getPersonResults() {
    return personResults;
  }

  public void setPersonResults(List<Person> personResults) {
    this.personResults = personResults;
  }

  public Person getPerson() {
    return person;
  }

  public void setPerson(Person person) {
    this.person = person;
  }

  private void clearPerson() {
    person = new PersonBuilder().build();
  }

  public String gotoList() {
    return "james-list";
  }

  public String gotoAdd() {
    clearPerson();
    return "james-add";
  }

  public String cancelAdd() {
    clearPerson();
    return gotoList();
  }

  public String addPerson() {
    personResults.add(person);
    return gotoList();
  }
}

詹姆斯-list.xhtml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html">
<h:head>
  <title>list page</title>
</h:head>

<body>
<div class="container">
  <div class="content">
    <h:messages showSummary="true" showDetail="false" errorClass="error" infoClass="info"
                warnClass="warn"/>
    <h:form>
      <h:dataTable value="#{james.personResults}" var="person">
        <h:column>
          <f:facet name="header">Id</f:facet>
          <h:outputText value="#{person.id}"/>
        </h:column>
        <h:column>
          <f:facet name="header">Name</f:facet>
          <h:outputText value="#{person.firstName}"/>
        </h:column>
        <h:column>
          <f:facet name="header">Surname</f:facet>
          <h:outputText value="#{person.lastName}"/>
        </h:column>
      </h:dataTable>
      <h:panelGroup layout="block">
        <h:commandButton value="Add" action="#{james.gotoAdd}"/>
      </h:panelGroup>
    </h:form>
  </div>
</div>
<ui:debug hotkey="L" rendered="true"/>
</body>
</html>

詹姆斯-add.xhtml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html">
<h:head>
  <title>add page</title>
</h:head>

<body>
<div class="container">
  <div class="content">
    <h:messages showSummary="true" showDetail="false" errorClass="error" infoClass="info"
                warnClass="warn"/>
    <h:form>
      <fieldset>
        <legend>Add Person</legend>
        <h:panelGrid columns="2">
          <h:outputLabel for="PersonId" value="Id:"/>
          <h:inputText id="PersonId" value="#{james.person.id}" binding="#{james.idComponent}"/>
          <h:outputLabel for="PersonFirstName" value="First Name:"/>
          <h:inputText id="PersonFirstName" value="#{james.person.firstName}" binding="#{james.firstNameComponent}"/>
          <h:outputLabel for="PersonLastName" value="Last Name:"/>
          <h:inputText id="PersonLastName" value="#{james.person.lastName}" binding="#{james.lastNameComponent}"/>
        </h:panelGrid>
        <h:panelGroup layout="block">
          <h:commandButton value="Add" action="#{james.addPerson}"/>
          <h:commandButton value="Cancel (immediate)" action="#{james.cancelAdd}" immediate="true"/>
          <h:commandButton value="Cancel" action="#{james.cancelAdd}"/>
        </h:panelGroup>
      </fieldset>
    </h:form>
  </div>
</div>
<ui:debug hotkey="L" rendered="true"/>
</body>
</html>
于 2010-04-01T09:52:45.680 回答