我有一些像这样的ajax调用
function ExportData() {
var data = {
action: "export_database", // the name of your PHP function!
};
jQuery.ajax({
type: "POST",
url: ajaxurl,
data: data,
beforeSend: function () {},
success: function (data) {
alert(data);
},
});
}
和这样的php函数
function export_database(){
return $response;
}
问题在于那个回应我有这样的事情
{
"type": "https://tools.ietf.org/html/rfc7231#section-6.5.1",
"title": "One or more validation errors occurred.",
"status": 400,
"traceId": "|3fa58ee1-48bf0cb9f60bfa25."
}
我只想提醒标题,但是当我尝试data.title时,我得到了undefine 我必须编码或解码某些东西吗,谢谢?
jeck猫
HUWWW
侃侃尔雅