Struts2的jQuery的Autocompleter与选择框(Struts2 jQuery Au

2019-08-05 14:03发布

我已经使用了Struts2的jQuery的autocompleter为我的Struts 2的应用程序。

这里是我的代码:

JSP:

 <s:form id="frm_demo" theme="simple" action="ManagersAutoCompleter1">
        <s:url var="remoteurl" action="test" />
    <sj:autocompleter href="%{remoteurl}" id="echo3" name="echo"
        list="itemList" listKey="id" listValue="name" emptyOption="true"
        headerKey="-1" headerValue="Please Select a Language" selectBox="true" />

        <s:submit value="submit" />
    </s:form>

Struts.xml

<action name="test" class="test.TestAction" method="populate">
  <result type="json">
  </result>
</action>

Action类:

 public String populate() throws Exception {

        itemList = new ArrayList<ListValue>();
        itemList.add(new ListValue("Php", "Php"));
        itemList.add(new ListValue("Java", "Java"));
        itemList.add(new ListValue("Mysl", "Mysl"));
        return SUCCESS;
    } //getter setter for itemList

列表类:

public class ListValue {
    private String id;
    private String name;

    public ListValue(String id, String name) {
        this.id = id;
        this.name = name;
    } //getter setter methods

但是,这Struts2的jQuery的autocompleter不工作。 它不填充任何值。

Answer 1:

这样做的一个

<s:url id="remoteurl" action="test"/>
<sj:select 
     id="customersjsonlstid" 
     name="echo"
     label="Handle a List"
     href="%{remoteurl}" 
     list="itemList"
     listValue="name" 
     listKey="id" 
     autocomplete="true"  
     loadMinimumCount="2" 
     id="echo3"/>

取而代之的是

<sj:autocompleter href="%{remoteurl}" id="echo3" name="echo"
list="itemList" listKey="id" listValue="name" emptyOption="true"
headerKey="-1" headerValue="Please Select a Language" selectBox="true" />

并确保您从动作类返回列表。 要对此进行检查,请使用您的IDE调试器是System.out.print或等做

ex...


    -------------
    ------------
    itemList.add(new ListValue("Mysl", "Mysl") );
    System.out.println("Size of my list="+itemList.size());
    return SUCCESS;
}

而且你应该在你的动作类中定义的getter和setter方法

private List itemList; 
    public List getItemList() {
    return itemList;
} 

public void setItemList(List itemList) {
    this.itemList = itemList;
}


Answer 2:

这是错误的:

<sj:autocompleter href="%{remoteurl}" id="lst" name="lst"
    list="itemList" listValue="name" listKey="id" selectBox="true" />

你是一个地图喂养autocompleter,而不是与自己建立了一个自定义对象。

一个HashMap中没有任何name ,也没有id字段,而是有key S和value S场。

通过改变开始,看看它的工作原理:

<sj:autocompleter href="%{remoteurl}" id="lst" name="lst"
    list="itemList" listValue="value" listKey="key" selectBox="true" />


Answer 3:

您键入未被引用错误的属性。

<s:url id="remoteurl" action="test" /> 

应该

 <s:url var="remoteurl" action="test" />

使用列表项bean类

public class ListValue {
  private String id;
  private String name;
...
}

public String populate() throws Exception {
  itemList.add(new ListValue("Php", "Php"));
  itemList.add(new ListValue("Java","Java") );
  itemList.add(new ListValue("Mysl", "Mysl") );
  return SUCCESS;
}

假设,构造和修改器已被添加。



文章来源: Struts2 jQuery Autocompleter with select box