我可以使用 Codebehind 插件在 Struts 2 中将方法作为操作访问吗?由于没有struts.xml
文件,它的工作方式action!method
与 URL 相同。
只是我想知道访问一个方法
如何在课堂上使用 Struts 标签?
"@Action(name="action"), <s:url action="action" method="method" />
班级 :
@Action(name = "JSONexample")
@Result(name="success",type=JSONResult.class,value="",params={"root","List"})
public class PartAction extends ActionSupport {
public String JSONexample{
-----
return SUCCESS;
}
public String readxml { }
}
如果我在提交按钮单击时访问以下方法,我会得到 JSON 数据吗?
$.getJSON('ajax/sayHi.action', formInput,function(data)
所以我可以访问 URL 中的操作
localhost:7001/Sample/JSONmethod.action
获取 JSON 数据?