gpt4 book ai didi

javascript - XMLHttpRequest.response 是否真的为 null

转载 作者:行者123 更新时间:2023-12-02 14:28:28 25 4
gpt4 key购买 nike

对不存在的数据库元素进行 AJAX 调用。然后处理程序如下所示:

if (xhr.readyState === 4 && xhr.status === 200 && xhr.response !== null) {
console.log('response type is ' + typeof xhr.response); // string
console.log('response is ' + xhr.response); // null
// rest of the handler//
{

问题是,如果我声明仅当响应不为空时才执行该 block ,为什么我的处理程序正在执行该 block (它总是转到控制台并记录字符串和空)?

最佳答案

好吧,如果它真的在记录

response type is stringresponse is null

...那么显然响应是字符串 “null”

关于javascript - XMLHttpRequest.response 是否真的为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38040119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com