1

リストを反復処理して編集可能なテーブルを作成する 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 でcountrycodeとの値を変更すると、アクションで更新された値を取得する必要があります。countrynameしかし、私はできませんか。これらの更新された値を取得する方法はありますか。

4

1 に答える 1

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>

ストラットがリストに入力できるようにするには、xml 構成で型変換アノテーションまたは同等のものを使用する必要があります。

@Element(value = Country.class)
@Key(value = String.class)
@KeyProperty(value = "countryCode") 
@CreateIfNull(value = true)
private List<Country> countryList = new ArrayList<Country>;
于 2013-10-03T09:21:37.530 に答える