AJAX请求传JSON数据

前端之家收集整理的这篇文章主要介绍了AJAX请求传JSON数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
	$.ajax({
		url:templateRoot+"user//getLogin",contentType: "application/json",type:"post",data:JSON.stringify({"name":name,"pwd":pwd}),dataType:"json",success:function(data){
			
		  }
	});
必须加上contentType: "application/json"这句。 原文链接:https://www.f2er.com/ajax/161845.html

猜你在找的Ajax相关文章