无法查看 JSON 数据

发布于 2024-11-05 11:52:53 字数 1130 浏览 1 评论 0原文

尽管当我访问远程 URL 时,我可以获得下载的 JSON 文件。当我在 javascript 中使用以下代码时,没有任何反应:

<input type="text" id="query" /><button>search</button><br />
<div id="results">

</div>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
//var url='http://search.twitter.com/search.json?callback=?&q=google+wave';
var url = url + '/Services/GetNthClosestDriverLocationToMe?callback=?&latitude=30&longitude=-97.6&nth=2';
var query;
    $('button').click(function(){
    query=$("#query").val();
    $.getJSON(url+query,function(json){
        $.each(json.results,function(i,tweet){
           //$("#results").append('<p><img src="'+tweet.profile_image_url+'" widt="48" height="48" />'+tweet.text+'</p>');
            $("#results").append('<p>'+tweet.Name+'</p>');
        });
    });
});
});
</script>

请注意,注释掉的 twitter URL 工作得很好。这让我认为它与我的 URL 有关,即使我只需从浏览器访问该 url 即可获取 JSON 文件。另请注意,我的 URL 位于远程域上。

Even though I can get a JSON file that gets downloaded, when I go to my remote URL. When I use the following code in my javascript, nothing happens:

<input type="text" id="query" /><button>search</button><br />
<div id="results">

</div>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
//var url='http://search.twitter.com/search.json?callback=?&q=google+wave';
var url = url + '/Services/GetNthClosestDriverLocationToMe?callback=?&latitude=30&longitude=-97.6&nth=2';
var query;
    $('button').click(function(){
    query=$("#query").val();
    $.getJSON(url+query,function(json){
        $.each(json.results,function(i,tweet){
           //$("#results").append('<p><img src="'+tweet.profile_image_url+'" widt="48" height="48" />'+tweet.text+'</p>');
            $("#results").append('<p>'+tweet.Name+'</p>');
        });
    });
});
});
</script>

Notice the commented out twitter URL that works just fine. This makes me think that it has something to do with my URL, even though I am able to get the JSON file when i simply go to the url from the browser. Also, note that my URL is on a remote domain.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

第几種人 2024-11-12 11:52:53

您的 url var 在您的代码中未定义。这可能就是问题所在。
如果没有,请输入完整的代码。您的网址可能格式错误。

Your url var is undefined in your code. This might be the problem.
If not, please put your full code. Your url might be malformed.

夏尔 2024-11-12 11:52:53

感谢您的所有回复。启动 fire-bug 后,问题不在代码中,而是在我的 JSON 中(发布在我上面的回复之一中)。与 Twitter 结果不同,我的结果不是集合,因此它在 $.each 上出错。

Thanks for all the replies. After firing up fire-bug, the problem is not in the code, but in my JSON (posted in one of my replies above). Unlike the Twitter result, mine is not a collection, and thus it was erroring out on $.each.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文