0

我有以下 js 脚本和 html 代码,并想在页面上输出结果。当我在控制台中运行它时,我可以看到如下结果:

[对象{标题=“他们没有鞠躬;他们没有烧”,链接=“http://xxxxxxx.com/bow-burn/”,作者=“管理员”,更多...},对象{ title="你上一次在你生活中的蚂蚁领域是什么时候?", link="http://xxxxxxx...significant-areas-life/", author="Admin", more...}, Object { title="婚姻是光荣的...", link="http://xxxxxxx...arriage-honourable-all/", author="Admin", more...}, Object { title="住宅在上帝的堡垒中”,link="http://xxxxxxx...elling-strongholds-

html代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">

    <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
    Remove this if you use the .htaccess -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

    <script src="css/style.css"></script>
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
    <script src="js/script.js"></script>
</head>
<body>

    <div id="blog" data-role="page">
    <div data-role="header" class="sys_hd" data-position="fixed" data-id="sys_header" >
        <h1>Sysads Posts</h1>
        </div><!-- header -->
        <div data-theme="c" data-role="content" id="postlist"> </div><!-- content -->
        <div data-role="footer" data-position="fixed" data-id="sys_footer" >
                    <div data-role="navbar" >
                <ul>
                    <li><a href="#blog" class="sys_ft">Home</a></li>
                    <li><a href="#blog" class="sys_ft">Disclaimer</a></li>
                </ul>
            </div><!-- navbar --> 
        </div><!-- footer --> 
    </div><!-- page -->
</body>
</html>

js代码:

$(document).ready((function(){
     url = 'http://xxxxxxxx.com/category/daily-devotion/feed/';
        $.ajax({
        type: "GET",
        url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=1000&callback=?&q=' + encodeURIComponent(url),
        dataType: 'json',
        error: function(){
            alert('Unable to load feed, Incorrect path or invalid feed');
        },
        success: function(xml){
            postlist = xml.responseData.feed.entries;
            console.log(postlist);
        }
    });
}));
4

5 回答 5

1

它可能是格式错误的 json。http://json.parser.online.fr/说什么?

于 2013-09-23T13:02:18.873 回答
0

试试 stringfy 方法:

JSON.stringfy(obj)
于 2013-09-23T13:03:54.283 回答
0

尝试 :

for(var i in postlist) {
   var obj = postlist[i];
   console.log("title >>>  "+obj.title);
   console.log("link>>>  "+obj.link);
   ...........//other properties
}
于 2013-09-23T13:07:48.963 回答
0

您的问题并不完全清楚您要完成什么,但从标题和提供的代码来看,我猜您想将检索到的条目添加到页面的“#postlist”部分。如果这是正确的,你可以这样做:

success: function(xml){
    postlist = xml.responseData.feed.entries;

    $.each(postlist, function(entry){

         $('#postlist').append($('<div class="entry">' + entry.title + '</div>'));

    });    

}

显然添加任何你喜欢的标记方式。

希望有帮助。

于 2013-09-23T13:11:28.107 回答
0

尝试这个:

success: function(data ){
            var postlist = data.responseData.feed.entries;
            var html = '<ul data-role="listview" data-filter="true">' ;
            for (var i = 0 ; i < 10 ; i++) {
                var entry = postlist[i];
                html += '<li>';
                html += '<a href="' + entry.link + '">' ;
                html += '<div>' + entry.title + '</div>' ;
                html += '<div>' + entry.author + '</div>' ;
                html += '</a>';
                html += '</li>';
            }
            html += '</ul>';
           $( "#postlist" ).append(html);

        }});
于 2013-09-28T19:45:53.570 回答