Struts2 Actions を呼び出すための顧客タグを見たり書いたりしたことがある人がいるかどうか疑問に思っています。
私が探しているのは次のようなものです:-
<s:button value="Click Me!" action="thisIsMyAction" >
<s:param name="productId" value="%{productId}" />
<s:param name="userId" value="%{userId}" />
</s:button>
そのため、アクションであなたが持っている
public String thisIsMyAction() {
String productId = getServletRequest.getParameter("productId");
String userId= getServletRequest.getParameter("userId");
// Do some stuff here.
return SUCCESS;
}
その理由は、href や画像を使用したくない場合が多く、常にフォームを送信しているわけではないからです。
事前に乾杯