backbone.js – 从Marionette中的CompositeView获取最后一个项目视图

前端之家收集整理的这篇文章主要介绍了backbone.js – 从Marionette中的CompositeView获取最后一个项目视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以从Backbone CompositeView获取最后一个ItemView?我已经找到了很多文档来获取Collection中的最后一个模型,但不是最后一个视图集合中的View.

我想这样做的原因是我可以稍微改变表中的最后一行.

以下是我现在正在使用的代码,它工作正常,但如果我可以从创建和渲染它的CompositeView中获取正确的ItemView,那么它将不那么“hacky”.它使用jQuery搜索CompositeView包含的DOM的整个部分以获取最后一个元素,然后操作该元素.

B.ListControl.View = Backbone.Marionette.CompositeView.extend({
    itemView: ...,itemViewContainer: ...,template: ...,// ON RENDER
    onRender: function(){
        // Add button to the last element in the list
        this.$el.find('div:last').text('Custome stuff goes here');
    }
});

谢谢!

解决方法

获取您的集合后,您可以通过以下方式获取最后一项:
this.children.findByIndex(this.children.length - 1);

保姆插件为您提供了许多有用的方法

findByModel,findByCollection,findByCustom,findByIndex,findByCid

原文链接:https://www.f2er.com/js/150881.html

猜你在找的JavaScript相关文章