gpt4 book ai didi

来自 (api.census.gov) 的 JavaScript 查询 Json 字符串

转载 作者:行者123 更新时间:2023-11-30 16:03:41 26 4
gpt4 key购买 nike

我有一个 API,它应该返回一些文本 JSON 字符串。

http://api.census.gov/data/2010/sf1?get=P0010001&for=county:013&in=state:08

我想使用 JavaScript 查询此 API 并显示在 HTML 元素中。代码如下所示:

   //html
<input type="submit" value="Get City" onclick=" getpop()">
//JS:
function getpop() {
var nereq2 = new XMLHttpRequest();
nereq2.open("GET", "http://api.census.gov/data/2010/sf1?get=P0010001&for=county:013&in=state:08", true);
nereq2.onreadystatechange = function () {
if (nereq2.readyState == 4) {
var temp3 = nereq.response; **//problem start at here, which always return empty*******
document.getElementById("fs").innerHTML = temp3;
};
};
nereq2.send();
}

当我单击链接时,它会正确返回 JSON,但是当我使用代码查询时,它会返回空。不知道是浏览器设置的问题还是其他问题?

最佳答案

你打错了。 nereq.response 应该是 nereq2.response

Working JSFiddle -(在这里使用 https 因为 JSFiddle 需要它)

关于来自 (api.census.gov) 的 JavaScript 查询 Json 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37337296/

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