struts 2アクションでパラメーターを渡すにはどうすればよいですか?.
これが私のコードです。
<s:form>
<s:select name="menuItem" list="menuItems" listKey="menuItemID"
listValue="menuItemName" headerKey="" headerValue="--MenuItems--"
cssClass="selectbox_bg2" id="select"
onchange="handleChange(this.value)" />
<s:textfield name="select_value" id="select_value" />
</s:form>
<script type="text/javascript">
function handleChange(value) {
window.location = "callMyAction?ValueToSubmit=" + value;
}
</script>
私の質問は、アクション クラスでこのパラメーター (値) を取得する方法です。パラメータを渡してjspページを返します。
ありがとう..