改进后请求中的jquery数据请求格式

时间:2015-08-21 22:21:56

标签: jquery ajax retrofit

我有一个jquery ajax post请求

 $.ajax({
   url: "/hello",
   data:{ data: {“firstName”:”john”,"lastName”:”doe”} },
   type:"POST",
   dataType:"json"
 });

{ data: {“firstName”:”john”,"lastName”:”doe”} }部分的格式是"数据" ?

我正在尝试获取一个字符串,类似于{ data: {“firstName”:”john”,"lastName”:”doe”} }在java spring中用于post post的改进。我也尝试过使用

public interface userInfoService {
    @FormUrlEncoded
    @POST(“/hello")
     public Response userInfo(@Field("data") TypedString userInfo);
}

0 个答案:

没有答案