URL 查询字符串以适当的格式为我提供了正确的响应,但我无法在网页上实现。
我尝试使用正确的 GET 参数执行下面的脚本进行测试,但它没有返回任何内容,甚至是警报。
我认为问题出在 URL 上,因为我尝试将https://graph.facebook.com/zombies 作为 url 并且它有效。
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
$.getJSON('http://api.petfinder.com/pet.find?key=1234567890&location=&format=json', function(pet)
{
alert("hi!");
});
</script>
有没有办法解决这个问题?谢谢!