一个标准的AJAX请求

时间:2022-03-31 11:04:15

这是一个标准的ajax请求:

 $.ajax({
type:"post",
url:basePath+"/resourcePush/operationLog",
async:false,
data: JSON.stringify(json),
contentType : "application/json;charsetset=UTF-8",
dataType:"json",
success: function(data){ },
error:function () { }
});

其中dataType是描述springMVCf返回的参数;

contentType是描述传递的参数,

如果默认不写的话,则SpringMVC对应注解是requestParam

如果是其它指定的,比如

contentType : 'application/json;charset=UTF-8',

contentType : 'text/html;charset=UTF-8',

则SpringMVC对应注解是requestBody

async:false,是同步

async:true,是异步