以下是目前的Galleria API:http://galleria.aino.se/docs/1.2/api/methods/
鉴于此API,我想显示刚刚上传并推送到galleria的图片:
Galleria.get(0).push({
image: '<%= @photo.photo.url %>',
thumb: '<%= @photo.photo.thumb.url %>',
title: '<%= @photo.title %>'
});
我在考虑简单地使用.show( index )
方法,但我不知道如何获取索引而不必计算某个容器的子项......
您是否看到了使用api获取最后一张图片索引的方法?
感谢。
修改
查看galleria对象,我想我可以访问像_data这样的“私有”变量并获取长度...但如果你找到更好的方法,请继续;)
答案 0 :(得分:1)
Galleria.get(0).getDataLength() - 1;
内部:
getDataLength = function () {
return this._data.length;
}