无法使用Jquery从JSON提要中提取数据。有人可以帮忙吗只是想从现在开始从“故事”阵列获得标题并继续努力。我做错了什么?
$(document).ready(function(){
//Tell the function where the feed is located
$.getJSON("http://www.sfarts.org/sfarts/jftemp/sfartsJSONAPI.cfc?method=getTenStoriesfixed&returnformat=JSON#sthash.jmTrJRUN.dpuf", function(data) {
//Grab each of the "entries"
$.each(data.stories, function(i,item){
//Only grab "entries" 10 times
if(i < 10){
//Create the links and throw them
//into the body of the page
$("body").append("<p>"+item.title+"</p>");
}
});
});
});
答案 0 :(得分:2)
请务必先包含jQuery:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
然后,您需要配置跨域策略以允许从其他域接收数据。这是覆盖stackoverflow上的信息的最高文档:jQuery AJAX cross domain