3

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

这是我的代码:

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>

动作类:

 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 jQueryautocompleter不起作用。它不填充任何值。

4

3 回答 3

1

这是错误的:

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

您正在为自动完成器提供地图,而不是您自己构建的自定义对象。

HashMap没有任何namenorid字段,而是具有skeyvalues 字段。

首先改变它,看看它是否有效:

<sj:autocompleter href="%{remoteurl}" id="lst" name="lst"
    list="itemList" listValue="value" listKey="key" selectBox="true" />
于 2013-01-04T09:43:12.250 回答
1

您输入了未引用的错误属性。

<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;
}

假设已经添加了构造函数和修改器。

于 2013-01-04T11:16:09.913 回答
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;
}
于 2013-01-06T19:44:42.847 回答