我一直试图提醒这一点,以便打印两个回复
var response;
try {
response = JSON.parse(xmlhttp.responseText);
} catch (e) {
console.error(this.responseText);
alert(this.responseText);
}
if (response) {
console.log(response);
}
我希望它在发生故障和响应成功时提醒响应,但我还没想出来。
答案 0 :(得分:0)
想通了 在这个阶段
console.error(this.responseText);
alert(this.responseText);
我需要像这样插入我的错误信息
var responseText = this.responseText;
提醒('注册失败,因为' + responseText);
及以下 的console.log(响应);
提醒('注册成功');
在此阶段,它会打印所需的结果。