用于种子的isoHunt JSON搜索API无法正常工作

时间:2013-01-14 15:18:48

标签: jquery json api parsing search

我正在尝试使用isoHunt搜索API,但是当我尝试解析URL(在我的broswer中查看其位置后似乎是正确的)时,没有任何反应。下面是我用来尝试测试脚本的脚本。有谁知道是什么导致这不能解析JSON文件?

<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>isoHunt Search</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#button").click(function(){
    var keywords = $("#keywords").val();
    var url = "http://isohunt.com/js/json.php?ihq=" + keywords;
    $("#output").append(url);
    $.getJSON(url, function(data){
        $("#output").append("TEST123");
    });
});
});
</script>
</head>
<body>
<input type="text" name="keywords" id="keywords" />
<button id="button">Search</button>
<div id="output"></div>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

由于某种原因(read here)isohunt不支持JSONP,所以你不能在这里使用ajax跨域。但是,您可以在您的域内制作代理