<html>
<head>
<title>Result</title>
<link rel='stylesheet' type='text/css' href='stylesheet.css'/>
</head>
<body>
<div></div>
<script>
$(document).ready(function() {
$.getJSON("http://api.crunchbase.com/v/1/company/facebook.js?api_key=mgxpds8ja7f6cncwd39caed7")
});
</script>
</body>
</html>
我觉得有一些非常容易让我失踪,但我似乎无法取消任何数据。
答案 0 :(得分:3)
代码中存在相同的原始政策违规行为,您需要传递一个额外的参数callback=?
,以便它可以使用JSONP来发出请求。
$.getJSON("http://api.crunchbase.com/v/1/company/facebook.js?api_key=mgxpds8ja7f6cncwd39caed7&callback=?", function(data){
console.log(data);
//Do something with the data
})
演示:Fiddle
答案 1 :(得分:0)
获取JSON后,下一步需要添加回调并对JSON数据执行一些操作,
$.getJSON("http://api.crunchbase.com/v/1/company/facebook.js?api_key=mgxpds8ja7f6cncwd39caed7", function(data){
//CALLBACK
console.log(data); //LIST DATAs
//Do Something over here
})
答案 2 :(得分:0)
好。我看到了几件事......
检查下面的HTML,就像一个魅力,但对于x-domain错误......
<html>
<head>
<title>Result</title>
<link rel='stylesheet' type='text/css' href='stylesheet.css'/>
</head>
<body>
<div id="results"></div>
<script>
$(document).ready(function() {
$("#results").html( function () {
return $getJSON("http://api.crunchbase.com/v/1/company/facebook.js?api_key=mgxpds8ja7f6cncwd39caed7")
});
});
</script>
</body>
</html>
谢谢!
@leo。