我正在使用 jQuery/Ajax 发送一些数据。我的代码被标记为 POST,但 PHP 实际上将其视为 GET。是什么赋予了?
$.ajax({
url: url,
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (results) {
callback(results);
},
error: function (req, msg, obj) {
console.log('An error occured while executing a request for: ' + url);
console.log('Error: ' + msg);
}
});
我可以通过执行 print_r($_GET) 和 print_r($_POST) 来确认它作为 GET 进入 PHP 端