将值从控制器传递到jsf视图

时间:2015-05-18 04:37:06

标签: jsf controller master-detail

我刚刚开始学习jsf,我遇到了一个基本问题。我在dataTable中显示了一个对象列表,并为每一行创建了表单,以使用正确的参数调用函数:

<h:dataTable value="#{test.getMyItems()}" var="o"
            styleClass="order-table"
            headerClass="order-table-header"
            rowClasses="order-table-odd-row,order-table-even-row">

<h:column>
    <f:facet name="header">Content</f:facet>
    #{o.content}
</h:column>
<h:column>
<h:form>
    <h:commandLink action="#{test.edit}" value="edit">
    <f:param name="id" value="#{o.id}" />
    </h:commandLink>
</h:form>
</h:column>
</h:dataTable>

现在我想将用户重定向到编辑页面,这是一个输入设置为正确值的表单。所以在函数编辑中我将值设置为变量:

public String edit() {
    this.name = "test1";
    this.description = "test2";

    return "/edit.xhtml?faces-redirect=true";
}

在编辑视图中,我想显示它们:

<h:form>
            <h:outputLabel value="name:" />
            <h:inputText value="#{test.name}" />

            <h:outputLabel value="description" />
            <h:inputText value="#{test.description}" />

            <h:commandButton value="Add" action="#{edit.update()}"/>
 </h:form>

但输入为空。为什么呢?

测试课程:

@ManagedBean (name = "test")
@ViewScoped
public class Test {
    private String name;
    private String description;

public String getName() {
    return this.name;
}

public void setName(String name) {
    this.name = name;
}

public String getDescription() {
    return this.description;
}

public void setDescription(String description) {
    this.description = description;
}

public String edit() {
    this.name = "test1";
    this.description = "test2";

    return "/edit.xhtml?faces-redirect=true";
}

 public List<Item> getMyItems() {
    List<Item> items = new ArrayList<Item>();
    Item i = new Item("1", "g", "f");
    items.add(i);

    return items;
} 

public void update() {
}

1 个答案:

答案 0 :(得分:0)

它们是空的,因为您要将重定向发送到新视图。只要当前视图存在,视图范围的bean就会存在。重定向到新视图会破坏它。

在此特定构造中,您需要<h:link>,而不是<h:commandLink>

替换

<h:form>
    <h:commandLink action="#{test.edit}" value="edit">
    <f:param name="id" value="#{o.id}" />
    </h:commandLink>
</h:form>

通过

<h:link value="edit" outcome="edit">
    <f:param name="id" value="#{o.id}" />
</h:link>

with edit.xhtml

<f:metadata>
    <f:viewParam name="id" value="#{edit.id}" />
    <f:viewAction action="#{edit.init}" />
</f:metadata>

另见: