我无法检索通过蛋糕 php 控制器文件中的 ajax 调用作为帖子发送的值
$.ajax({
type: "POST",
url: "share",
data: country,
dataType: "json",
success: function (response) {
if (response.success) {
// Success!
} else {
console.log(response.data, response.code);
}
}
});
我已经尝试使用以下方法通过 POST 检索上述代码中发送的数据。但他们都没有工作。
$this->params
$this->data
$_POST[]
$this->request
url 指向控制器页面中的函数。
请你们中的任何人告诉我如何检索该值。