作者:yushun | 来源:互联网 | 2024-09-30 16:27
12345678910 $.ajax({ type: 'post', contentType: "application
1 2 3 4 5 6 7 8 9 10
| $.ajax({
type: 'post',
contentType: "application/json ;charset=utf-8 ",
url: 'http://192.168.0.90:8080/testweb/rest/UserInfoService/age',
data: {"mobile":'13333333333','msg':"这是一条短信"},
dataType: 'text',
success: function (result) {
alert(result);
}
}); |
这是ajax代码 我如果把参数放在链接里问号后面就能接受到 写在data里面就不行 是我后台注解写的不对么
1 2 3 4 5 6 7
| @POST
@Path("/age")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public String userAge(@QueryParam("mobile") String mobile,@QueryParam("msg") String msg) {
return "{"你要发送的手机号是":""+mobile+"","发送的内容是":""+ msg+""}";
} |
这是webService 代码
服务端具体我是按照 http://blog.csdn.net/zolalad/... 这个网址里的教程搭建的
ajax 是我误打误撞敲出来的 请问这是什么情况 我在上网查到的解决办法就是直接给拼成json 的字符串而不是对象 那种 但是服务端就要先将字符串转成json对象在进行操作 这样可能有点麻烦 我觉得可能会有更好的解决方案 以为这种webService 我是第一次搭建 里面的注解 我都没搞懂 另外我应该去哪里找这个注解的api之类的东西啊 =