gpt4 book ai didi

javascript - 从 Github pull json 数据时出现 TypeError

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

我使用 d3.json 从 Enterprise GitHub 中提取 json 链接(与 js 文件所在的存储库/文件夹相同。

d3.json("https://raw.github.exampleEnterprise.com/path/to/repo/data.json?token=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",function(error, flare) {
console.log(flare);
root = flare;
update(root);
});

我收到错误TypeError:耀斑未定义

当我从公共(public) GitHub 中提取它时,一切正常

d3.json("https://raw.githubusercontent.com/path/to/repo/data.json",function(error, flare) {
console.log(flare);
root = flare;
update(root);
});

当我将带有 token 的企业链接粘贴到浏览器的地址栏中时,我可以看到整个 JSON 文件。所以奇怪的是它没有通过,或者为什么。

编辑:我添加了一个错误返回,

d3.json("https://raw.github.exampleEnterprise.com/path/to/repo/data.json?token=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",function(error, flare) {
if(error){ console.log("There was an error", error); }
console.log(flare);
root = flare;
update(root);
});

可以看到我收到的错误是:

出现错误 XMLHttpRequest { onreadystatechange: null, readState: 4, timeout: 0, withCredentials: false, upload: XMLHttpRequestUpload, responseURL: "", status: 0, statusText: "", responseType: "", response: “” }

编辑 2:在“网络”选项卡中,我看到了对 GET 请求的 200 响应。检查请求的“响应”选项卡时,我可以看到一个红色错误: SyntaxError: JSON.parse: Unknown end of data at line 1 column 1 of the JSON data 我尝试使用 d3.text( )而不是 d3.json(),它仍然返回“未定义”(正如我在控制台中看到的那样)。这就解释了这个错误。

最佳答案

在该回调中,您不会检查是否存在错误。

如果出现错误,数据将不确定。

如果你要做这样的事情:

d3.json("__url__", function(error, data){
if(error){ console.log("There was an error", error); }
else{
console.log("Here is your data: ", data);
}
})

你可以看看是否有错误,只要没有错误,就可以访问数据对象。

希望这有帮助。

关于javascript - 从 Github pull json 数据时出现 TypeError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47037274/

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