這是我的jsp:<s:select>錯誤:請求列表鍵「typeSurvey」無法解析
<s:form action="InsertSurvey">
<table>
<tr>
<td> ID Survey: </td><td><s:textfield name="SurveyValues.survey.idtextsurvey"/> </td>
<td> Tipo Survey: </td><td><s:select list="typeSurvey"/> </td>
</tr>
</table>
</s:form>
,這是我的動作沒有獲取/設置
public class InsertSurveyAction extends ActionSupport implements Preparable {
protected SurveyValues surveyValues;
protected List typeSurvey;
protected String typeSurveySelected;
public InsertSurveyAction() {
}
@Override
public String execute() throws Exception {
return SUCCESS;
}
public void prepare() throws Exception {
typeSurvey = new ArrayList();
typeSurvey.add("Multi");
typeSurvey.add("Singolo");
}
爲什麼我有這個問題? *
tag 'select', field 'list': The requested list key 'typeSurvey' could not be resolved as a collection/array/map/enumeration/iterator type. Example: people or people.{name} - [unknown location]
我有struts2的最後一個版本。
感謝您的留言!請勿在您的帖子中使用簽名/標語。您的用戶箱計爲您的簽名,您可以使用您的個人資料發佈您喜歡的任何關於您自己的信息。 [關於簽名/標語的常見問題](http://stackoverflow.com/faq#signatures) – 2013-02-24 09:41:02