0

我正在使用两个标签。它们都具有相同的名称,但不同的 ID

<s:doubleselect id="countryId1" name="country"     list="countriesMap.keySet()" doubleId="cityId1"                                     doubleName="city" doubleList="countriesMap.get(top)" />

<s:doubleselect id="countryId2" name="country"     list="countriesMap.keySet()" doubleId="cityId2"                                     doubleName="city" doubleList="countriesMap.get(top)" />

在行动中我试图得到

country String[] countryArray = ServletRequest.getParameterValues("country"); 

但我越来越countryArray = null。我查看了页面代码,发现了这种情况

<select name="country" id="countryId1" onchange="countryId1Redirect(this.options.selectedIndex)">
    <option value="USA">USA</option>
    <option value="Germany">Germany</option>
</select>

我选择了价值美国,但没有selected='selected'财产。

如何将每个选择的值<select name...放入数组中?

4

1 回答 1

1

要从具有相同名称的元素中获取值列表,请创建匹配名称的 getter 和 setter;例如:

public class MyAction extends ActionSupport {

    private List<String> countries;
    private List<String> cities;

    public String execute() {

        if (getCountry() != null && getCity() != null) {
            for (int i = 0; i < getCountry().size(); i++) {
                System.out.println("country"+(i+1)+"="+getCountry().get(i));
                System.out.println("city"+(i+1)+"="+getCity().get(i));
            }
        }

        return SUCCESS;
    }

    // setCountry matches country
    public void setCountry(List<String> countries) {
        this.countries = countries;
    }
    public List<String> getCountry() {
        return countries;
    }

    // setCity matches city
    public void setCity(List<String> cities) {
        this.cities = cities;
    }
    public List<String> getCity() {
        return cities;
    }

}

我相信你可以使用String[],而不是List<String>如果你喜欢。

我目前没有办法对此进行测试,但是您可以使用状态变量的 index 属性来获取迭代索引,可能是这样的:

<s:iterator value="country" status="stat"> 
    <s:property /> <!-- the country -->
    <br />
    <s:property value="#city[#stat.index]" /> <!-- the city corresponding to the current country -->
    <br />
    <br />
</s:iterator> 
于 2012-04-03T21:10:55.317 回答