我有一个抛出错误的AJAX请求。
它是我继承的更大系统的一部分,因此我不能完整地发布文件,但我试图隔离相关代码:
$.ajax(
{
url: ajax_url, // Valid URL
data: jsonData, // Valid JSON
dataType: 'json',
contentType: 'application/json',
type: POST,
async:true,
success: function(data)
{
console.log(data);
parsedData = JSON.parse(data);
console.log(parsedData);
// Here I am trying to log successful output
},
error: function(jsonData)
{
console.log("error");
console.log(jsonData);
}
});
在PHP中,值被添加到数组并返回:
$data['status']=200;
$data['new_id']=$insert_id;
return json_encode($data);
此刻我正在记录的是“错误”。再次为不完整的代码道歉,我试图提供我认为导致错误的代码。