0

我正在开发一个phonegap应用程序。我正在使用下一个使用 jQuery 的 HTML 代码来显示带有标签 #beavercreek 的 instagram 图片

<html>
<head>
<title>Instagram test</title>
<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>
</head>
<body>
<script src="instagramfeed.js"></script>
<div class="instagramfeed"></div>
</body>
</html>

此外,这是 instagramfeed.js 存档的代码

$(function() {
$.ajax({
    type: "GET",
    dataType: "jsonp",
    cache: false,
    url: "https://api.instagram.com/v1/tags/beavercreek/media/recent/?access_token=ACCESS_TOKEN_NUMBER",
    success: function(data) {
        console.log(data);
        for (var i = 0; i < 15; i++) {
            var date = new Date(parseInt(data.data[i].created_time) * 1000);
                $(".instagramfeed").append("\
                    <img src='" + data.data[i].images.standard_resolution.url +"' />\
<div>"+date.getDate()+"/"+(date.getMonth()+1)+"/"+date.getFullYear()+"</div>\
<div><strong>"+data.data[i].user.username+"</strong> "+data.data[i].caption.text+"</div><br /><br />\
                ");
            date = null;
        }
    }
});
});

我希望结果显示带有此主题标签(beavercreek)的 instagram 图片,但不包括已知用户名中的图片。有谁能够帮助我?。

非常感谢你。

4

1 回答 1

0

如果您可以接受相同的响应,但只是在代码中对其进行过滤,您也许可以这样做

for (var i = 0; i < 15; i++) {
    if(data.data[i].user.username != YOUR_USERNAME) {
        var date = new Date(parseInt(data.data[i].created_time) * 1000);
            $(".instagramfeed").append("\
                <img src='" + data.data[i].images.standard_resolution.url +"' />\
<div>"+date.getDate()+"/"+(date.getMonth()+1)+"/"+date.getFullYear()+"</div>\
<div><strong>"+data.data[i].user.username+"</strong> "+data.data[i].caption.text+"</div><br /><br />\
            ");
        date = null;
    } 
}
于 2013-10-15T09:47:59.073 回答