$.ajax({
url:"xxxxxx"
type:"post",
dataType:"json",
data:"hello world",
headers: {'Content-Type': 'application/json'},
success: function (res) {
if (res.status == 1) {
window.location.reload();
} else {
alert(res.message);
}
}
})
使用post请求,这里的data里的参数就是在body形式传过去。