jquery ajax获取返回值为null

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery ajax获取返回值为null相关的知识,希望对你有一定的参考价值。

js页面
function saveDept()
if(Validator.Validate(window.document.popForm,3))
window.document.popForm.submit();
//异步提交调用
$.ajax(
type:"post",
dataType : "json",
url: '/sys/saveSysDept.action', //提交的action
success: function(data) //获取成功
alert("返回========"+data);
parent.closePopDiv2();

);


action设置返回
//设置ajax返回参数1:执行添加成功
super.writeJson(sysid);

public void writeJson(Object object)
//String json = JSON.toJSONString(object);
String json = JSON.toJSONStringWithDateFormat(object, "yyyy-MM-dd HH:mm:ss");
try
ServletActionContext.getResponse().setContentType(
"text/html;charset=utf-8");
ServletActionContext.getResponse().getWriter().write(json);
ServletActionContext.getResponse().getWriter().flush();
catch (IOException e)


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>checkbox</title>
<script src="js/jquery-1.3.2.js" type="text/javascript"></script>
<script src="js/1.js" type="text/javascript"></script>
</head>

<body>
<table id="table1">
<tr>
<td><input type="checkbox" value="1"/>1</td>
<td id="k_1"><input type="text" name="student" id="s_1" readonly="true"/></td>
</tr>
<tr>
<td><input type="checkbox" value="2"/>2</td>
<td id="k_2"><input type="text" name="student" id="s_2" readonly="true"/></td>
</tr>
<tr>
<td><input type="checkbox" value="3"/>3</td>
<td id="k_3"><input type="text" name="student" id="s_3" readonly="true"/></td>
</tr>
<tr>
<td><input type="checkbox" value="4"/>4</td>
<td id="k_4"><input type="text" name="student" id="s_4" readonly="true"/></td>
</tr>
</table>
</body>
</html>

-------------------------------------------------------------
$(document).ready(function()
$("td[id^='k_']").hide();
var check = $(":checkbox"); //得到所有被选中的checkbox
var actor_config; //定义变量
check.each(function(i)
actor_config = $(this);
actor_config.click(
function()
if($(this).attr("checked")==true)
$("#k_"+$(this).val()).show();
else
$("#k_"+$(this).val()).hide();


);
);

);
参考技术A 在返回前台页面时,json对象是否为空呢? 参考技术B action的返回值应该是ActionSupport.NONE;追问

是serverletsupport这个错了嘛?

参考技术C success: function(data) alert(1);看是否可以弹出,可以弹出说明请求成功。在controller控制器中打印请求的值,看是否获取到数据。

jquery中获取ajax返回数据的方法

//此处需要注意的是要想获取ajax返回的值时这个ajax请求必须是同步的,否则获取不到返回值
function getPageTotalAndDataTotal(page) {
        //设置一个变量用于接收ajax返回的值
	var pageTotal = 0;
	// 获取页数与数据总数
	$.ajax({
		url : "你的url地址",
		type : "post",
		async : false,
		data : {},
		dataType : "json",
		success : function(data) {
			pageTotal = data.pageTotal;
		}
		
	});
	return pageTotal;
}

 

以上是关于jquery ajax获取返回值为null的主要内容,如果未能解决你的问题,请参考以下文章

ajax 后台如何返回值给前台,详情见如下

从ajax发送时动作参数获取值为null是可以的

关于怎么用jQuery来获取mvc中返回值为JsonResult的值

mybatis resultType=“Map“ 时, 能不能允许返回的结果值为NULL值

Ajax:为啥response.responseXML返回的值为空?

Java返回值为null时如何避免报错?