jquery-ajax常用

与后端交互,直接json串,省去传统的一个个参数post

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

// 设定json结构
let postData = {
"userTel": $("#user_info").val(),
"cardSN": cardSN
};

// 生成json
postData = JSON.stringify(postData);

// 提交
$.ajax({
url: URL,
dataType: "json",
type: "post",
data:postData,

// 成功返回
success:function(data){

}
});

php端

1
2
3
4
5
6

// 直接接收
data = trim(file_get_contents('php://input', 'r'));

// 解析
$data = json_decode($data);