只是想知道是否有人见过或写过客户标签来调用 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 或图像,而且我们并不总是提交表单。
提前喝彩