展开全部
var params="username="+"1";
$.ajax({
type : "POST", //数据发送方式
url : "../servlet/clearCache",
dataType : "json", //接受数据格式 (这里有很多,常用的有html,xml,js,json)
data:params,//'date='+new Date(), 要传递32313133353236313431303231363533e78988e69d8331333366306439的数据
success : function(msg) {
//console.info(data);
alert(msg.message);
},
error : function () {
alert("请求出错!");
}
});
例如:
var username="niudun";
var password="123";
params="username="+username+"&password="+password;
后台取得:
String username=request.getParameter("username");
String password=request.getParameter("password");
扩展资料:
Jquery.Ajax()的data参数类型
类似“uname=alice&mobileIpt=110&birthday=1983-05-12“”这样的字符串。
除了这三种类型,还可以是JSON字符串,形如:
{"name": "uname", "age": 18}
注意,这个地方不是json对象,是json字符串,字符串,这样,在后台就可以直接注入到对象中。
当你需要向后台提交一组对象时时,json字符串的好处就体现出来了(对象数组)一般都是用post方法传递参数。
在jquery的ajax函数中,可以传入3种类型的数据:
1.文本:"uname=alice&mobileIpt=110&birthday=1983-05-12"
2.json对象:{uanme:'vic',mobileIpt:'110',birthday:'2013-11-11'}
3.json数组:
[
{"name":"uname","value":"alice"},
{"name":"mobileIpt","value":"110"},
{"name":"birthday","value":"2012-11-11"}
]
所以,可以一键获取表单并提交,非常方便。