这样写居然获取不到对象?难道是只能一个参数一个参数传进来吗?
@At("/save_fun")
@Ok("json")
public void savedetection(@Param("..") Detection detes,HttpServletRequest request) {
}
获得的detes里面的数据是空的。
前端是这样传的:
$.ajax({
url :"<%=contextPath %>/save_fun.action",
type : "post",
data:{'detes.name':'zhangsan'},
dataType : "json",
success : function(data) {
alert(data);
$('#myModal').modal('hide');
$("#myModalforam").modal('hide');
}
});
1 回复
添加回复
请先登陆