如何在我的操作中从JSP获取更新的列表值?

时间:2013-10-03 08:51:45

标签: java jsp struts2 annotations type-conversion

我有一个JSP,我在其中迭代一个列表并创建一个可编辑的表。

<s:iterator value="test" id="countryList">
  <tr>
    <td><s:textfield name="countryCode" value="%{countryCode}" theme="simple" /></td>
    <td><s:textfield name="countryName" value="%{countryName}" theme="simple" /></td>
  </tr>
 </s:iterator>

我的清单:

List<Country> test = new ArrayList<Country>();  

国家/地区类:

public class Country {
    private String countryCode;
    private String countryName;


and the getter setters......

并说我填写列表如下:

Country country = new Country();
Country country1 = new Country();

country.setCountryCode("1");
country.setCountryName("India");

country1.setCountryCode("2");
country1.setCountryName("US");

test.add(country);
test.add(country1);

现在,当我在JSP中更改countrycodecountryname的值时,我应该在我的操作中获取更新的值。但我不能。有没有办法获得这些更新的值。

1 个答案:

答案 0 :(得分:2)

Country拦截器使用索引属性访问填充列表时,您需要创建params对象。

<s:iterator value="test" id="countryList" status="stat">
  <tr>
    <td><s:textfield name="countryList[%{#stat.index}].countryCode" value="%{countryCode}" theme="simple" /></td>
    <td><s:textfield name="countryList[%{#stat.index}].countryName" value="%{countryName}" theme="simple" /></td>
  </tr>
 </s:iterator>

要让struts填充列表,您应该在xml配置中使用类型转换注释或等效项。

@Element(value = Country.class)
@Key(value = String.class)
@KeyProperty(value = "countryCode") 
@CreateIfNull(value = true)
private List<Country> countryList = new ArrayList<Country>;