我想跳过我通过Instafeed JS插件收集的Feed中的所有视频类型帖子.从其他一些帖子中读取设置过滤器可以解决它但是如果我应用它(见下文)我只得到2个图像而不是5.这5个中的一个是视频类
var loadButton = document.getElementById('instafeed-loadmore'); var feed = new Instafeed({ get: 'user', type: 'image', limit: '5', sortBy: 'most-recent', resolution: 'standard_resolution', userId: '', accessToken: '', template: '<div><a href="#" data-modal="instafeed-expand" data-caption="{{caption}}" data-image="{{image}}"><img src="{{image}}" data-etc=""></a></div>', filter: function(image) { return image.type === 'image'; }, after: function() { if (!this.hasNext()) { loadButton.setAttribute('disabled', 'disabled'); } }, }); loadButton.addEventListener('click', function() { feed.next(); });也许删除分辨率参数应该有所帮助.我也不认为
type: 'image',
是一个有效的论点.我也无法在instafeed文档中找到它.