为了账号安全,请及时绑定邮箱和手机立即绑定

前台用ajax post过来的数据后台要怎样接收?

前台用ajax post过来的数据后台要怎样接收?

PHP
德玛西亚99 2018-07-17 13:13:40
怎么老是报这种错误的?...展开
查看完整描述

1 回答

?
阿波罗的战车

TA贡献1862条经验 获得超6个赞

导入jQuery包

jQuery(document).ready(function($){
var url = "";
var data = {"param":"我是参数","other":"me too"};
$.post(url,data,function(result){
//.............
});
});

private String param;
private String other;
public void Test(){
PrintWriter out = null;
try{
out = getResponse().getWriter();
if(param.equals("我是参数")){
out.print(other);
}
}catch(Exception e){
//...
}finally{
out.flush();
out.close();
}
}

//getter and setter...

jQuery(document).ready(function($){
var url = "";
var data = {"param":"我是参数","other":"me too"};
$.post(url,data,function(result){
alert(result);
});
});

查看完整回答
反对 回复 2018-08-25
  • 1 回答
  • 0 关注
  • 1304 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信