我需要使用 JQuery 从非本地站点上的 Json 文件中获取简单字符串的帮助。这里有一些有用的信息。
Json 文件的 URL: https ://targetjsonsite.com/fileofinterest.json?api_key=12341234123412341234
Json 文件的内容:{"state":"finished"}
这是我的尝试-
<script>
$.getJSON("https://targetjsonsite.com/fileofinterest.json?api_key=12341234123412341234",
{
format: "json"
},
function(data) {
$.each(data.items, function(item){
//right here is where I would want to get the value "state" is set to.
});
});
</script>
我很难在网上找到一个真正帮助我理解发生了什么的例子。似乎大多数人都在一个非常笼统的层面上解释了 jsonp 如何工作,然后给你一个可能不相关的非常具体的例子。请帮忙。