我有以下我想运行的代码
$.ajax({
cache: false,
url: './animationPlay.php',
data: 'animation='+text,
type: 'POST',
datatype: 'text',
success: function(data) { alert("succsess") },
error: function(ts) { alert('error:'+ts.responseText) }
});
我已经看到如何捕获 ajax 查询发布错误?和jQuery $.get 或 $.post 来捕获页面加载错误(例如 404),但它不适用于我的代码。它只是设置为“错误”。如何获得有关问题所在的更多详细信息?
提前致谢。
编辑:我试过
error: function(xhr, textStatus, error){
console.log(xhr.statusText);
console.log(textStatus);
console.log(error);
}
我在控制台中收到错误,错误,一个空字符串。这是什么意思?