当没有使用div返回的图像时,我想在instafeed标记内显示一条消息。我正在使用instafeed库并检查了instafeed.js,并且看到诸如No images were returned from Instagram之类的错误消息,如何在HTML中显示它?

这是我的html代码

<div class="col-md-8">
        <h4>Photos</h4>

        <div id="instafeed"></div>

        <div class="clearfix"></div>
</div>


和我的JavaScript

 <script src="<?php echo base_url()?>js/instafeed.min.js"></script>

  <script type="text/javascript">
        var feed = new Instafeed({
            get: 'tagged',
            tagName: 'awesome',
            resolution: 'low_resolution',
            clientId: CLIENT_ID,
            userId: USER_ID,
            accessToken: ACCESS_TOKEN,
            useHttp: true,
            template: '<a href="{{link}}"><img src="{{image}}"/></a>'
        });

        feed.run();
    </script>

最佳答案

在我的html代码中,我添加了<p> tag并放置了id

 <p id="error"></p>


然后在我的JS中添加了error选项

 <script type="text/javascript">
    var feed = new Instafeed({
        ......
        error: function(err){
                     $('#error').text(err);
            }
    });

    feed.run();
</script>

关于javascript - 如何使用Instafeed库显示错误消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38886611/

10-11 23:32