ajax请求的简单代码
$.ajax({
url: "http://localhost:9090/superchat/valid/form_data",
//发送的路径
type: "post",
//发送的方式
data: '{"type":1,"amount":1}',
//发送的数据
contentType: "application/json",
//提交数据类型
dataType: "json",
//服务器返回的数据类型
success: function(data) {
console.log("success");
console.log(data);
},
error: function(data) {
console.log("error");
console.log(data);
}
});
在任何页面,按F12,将代码拷贝到控制台,运行,可以模拟跨域请求。
网友评论