JSF 2.0 Ajax commandButton只执行

时间:2014-10-06 18:49:18

标签: ajax jsf-2

我想用ajax执行一个简单的命令但没有任何输入。 这是我的代码:

<h:form>
      <h:commandButton class="button" 
                       value="Invite"
                       action="#{trainingController.inviteProfile(p)}">
      </h:commandButton>
</h:form>

变量p来自a,也是通过ajax请求填充的。 任何想法如何实现我的目标?

1 个答案:

答案 0 :(得分:0)

您可以使用f:ajax进行归档。 示例如下所示。

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-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://java.sun.com/jsf/html"
      xmlns:f="http://java.sun.com/jsf/core">
    <h:head>
        <title>Submit</title>
    </h:head>

    <h:body>
        <h:form>
            <h:commandButton value="Submit" 
                             action="#{coffeeBean.submit('abc')}">
                <f:ajax execute="@this" 
                        render="@this" />
            </h:commandButton>
        </h:form>
    </h:body>

</html>

ManagedBean

@ManagedBean(name = "coffeeBean")
@SessionScoped
public class CoffeeBean implements Serializable {

    public void submit(String s){
        System.out.println("s:" + s);
    }
}

您可以从like查看有关EL库的更多信息,并且此like存在如何检查EL的版本是服务器。