4

我想将用户输入作为参数传递到另一个页面。这是我的代码:

 <h:form>
     <h:inputText value="#{indexBean.word}"/>
     <h:commandLink value="Ara" action="word.xhtml">
          <f:param value="#{indexBean.word}" name="word"/>
     </h:commandLink>
</h:form>

好吧,这行不通。我可以读取支持 bean 中的 inputtext 值,但无法将其发送到 word.xhtml。

这是我尝试的另一种方法:

<h:form>
     <h:inputText binding="#{indexBean.textInput}"/>
     <h:commandLink value="Ara" action="word.xhtml">
          <f:param value="#{indexBean.textInput.value}" name="word"/>
     </h:commandLink>
</h:form>

这也行不通。

那么,我做错了什么?

4

1 回答 1

2

您的具体问题是由于在<f:param>请求带有表单的页面时评估的,而不是在提交表单时评估的。所以它保持与初始请求相同的值。

具体的功能需求不是很清楚,但是具体的功能需求基本上可以通过两种方式来解决:

  1. 使用纯 HTML。

    <form action="word.xhtml">
        <input type="text" name="word" />
        <input type="submit" value="Ara" />
    </form>
    
  2. 在操作方法中发送重定向。

    <h:form>
        <h:inputText value="#{bean.word}" />
        <h:commandButton value="Ara" action="#{bean.ara}" />
    </h:form>
    

    public String ara() {
        return "word.xhtml?faces-redirect=true&word=" + URLEncoder.encode(word, "UTF-8");
    }
    
于 2012-10-13T00:48:28.173 回答