怎么JSP页面直接调用Action里自定义的方法

除了Action类继承DispatchAction,还要做些什么,达人们速度帮帮

在struts里面进行配置,如:
<action name="useradd" class="包名.类名(action类)" method=“方法名”></action>
jsp里面直接使用提交就行了。不过提交时候的action要等于配置中<action name=" ">那么的值
希望对您有所帮助
温馨提示:内容为网友见解,仅供参考
第1个回答  2011-05-27
后台:class Sample extends ActionSupport
{
……
public String execute(){
……
return SUCCESS;
}
}
struts-config.xml里配置action
<action name="sample" calss="pacage/Sample"><return result="success">/target.jsp</return></action>

JSP页面:
<s:form action="sample" method="post">
<input type="hidden" name="canshu" value="value"/>
<s:submit value="submit"/>
</s:form>
或者
<input type="button" onclick="sample.action?参数传递"/ value="submit">
第2个回答  2011-05-27
需要在struts-config.xml配置这个类
然后在页面通过配置名.do调用
第3个回答  推荐于2017-10-14
代码:
public class TagAction extends ActionSupport
{
//封装用户请求参数的author属性
private String author;
//省略author属性的setter和getter方法
...
//定义第一个处理逻辑
public String execute() throws Exception
{
return "done";
}
//定义第二个处理逻辑
public String login() throws Exception
{
ActionContext.getContext().
put("author", getAuthor());
return "done";
}
}
相似回答