Php没有通过$ _POST接收变量。我试图将带有ajax的变量传递给php页面,但php将变量作为NULL。告诉我,错误是什么以及如何修复它?
jquery代码:
var imgPath;
$(".close_modal_clear_cover").on("click", function(e) {
imgPath = $("#cover_preview").attr('src');
$.ajax({
url: "/management/ajax_scripts/img_delete.php",
type: "POST",
data: imgPath,
async: true,
cache: false,
contentType: false,
dataType: "json",
processData: false,
success: function (returndata) {
console.log(imgPath); //url of image
console.log(returndata); // NULL
}
});
});
img_delete.php代码:
if (isset($_POST['imgPath'])) {
$path= $_POST['imgPath'];
unlink($path);
$response = $path;
} else {
$response = "false";
}
echo json_encode($response);
答案 0 :(得分:0)
data: imgPath
应为data: {imgPath: imgPath}
,您应该在php后端将$_GET
更改为$_POST
答案 1 :(得分:0)
感谢@Reflective提供帮助。在研究了img_delete.php和google搜索中的数据之后,我找到了一个解决方案。出于某种原因,在我看来,contentType被指定为false,但它必须是&application; x / www-form-urlencoded; charset = UTF-8'。
这是一个愚蠢的错误,但突然有人碰撞了。
$(".close_modal_clear_cover").on("click", function(e) {
// imgPath = $.session.get("imgCover");
imgPath = JSON.stringify($("#cover_prewiew").attr('src'));
$.ajax({
url: "/management/ajax_scripts/img_delete.php",
type: "POST",
data: {imgPath: imgPath},
async: true,
cache: true,
contentType: 'application/x-www-form-urlencoded; charset=UTF-8',
dataType: "json",
processData: true,
success: function (returndata) {
console.log(imgPath);
console.log(returndata);
}
});
});