我正在使用伟大的工具instafeed.js
与 instagram 的 api 进行交互。我目前正在尝试将结果过滤为仅image.type === 'video'
. 我已经能够让它发挥作用。唯一的问题是它永远不能满足limit:10
集合。不知何故,它可能会拉出所有类型(image
和video
),然后应用过滤器。10
仅对视频应用过滤器时是否可以满足限制?
var feed = new Instafeed({
limit: '10',
sortBy: 'most-liked',
resolution: 'standard_resolution',
clientId: 'xxxxx',
template:'<div class="tile"><div class="text"><b>{{likes}} ♥ </b>{{model.user.full_name}}</div><img class="item" src="{{image}}"></div>',
filter: function(image) {
return image.type === 'video';
}
});