Backbone事件和Twitter bootstrap popover

Geo*_*rgi 9 backbone.js twitter-bootstrap

在twitter bootstrap popover中插入主干渲染视图,如下所示.问题是当插入内容选项时,该视图的主干事件不会触发.我在div中插入视图以进行测试,使用$(选择器).html attendanceShow.render().el events工作没有问题.先感谢您

      attendance = new Attendance()
      attendance.url = "#{attendanceUrl}/#{attendanceId}" 
      attendance.fetch
        success: ->
          attendanceShow = new ExamAttendanceShow({model: attendance })
          currentTarget.popover
            html : true
            content: ->
              attendanceShow.render().el  
Run Code Online (Sandbox Code Playgroud)

最好的问候,Georgi.

小智 2

据我了解,根据您的代码和描述,您只是创建了弹出窗口的实例,但从未显示它。我有一个现场演示,但不能使用 CoffeeScript(我个人讨厌 CoffeeScript),您可以在下面和这个 jsfiddle中看到代码。

数据1.json

{"content": "lorem ipsum dolor sit amet"}
Run Code Online (Sandbox Code Playgroud)

索引.html

<div class="container">
    <div class="row">
        <button class="btn" data-target="popover">Popover</button>
    </div>
    <div class="row">&nbsp;</div>
    <div class="row">
        <button class="btn" data-action="change-content">Change Content</button>
    </div>
</div>
Run Code Online (Sandbox Code Playgroud)

main.js

var Main = Backbone.View.extend({
    model: null,
    item: null,
    popover: false,

    events: {
        'click .btn[data-target]': 'button_click',
        'click .btn[data-action="change-content"]': 'change_content'
    },

    initialize: function() {
        _.bindAll(this);

        this.model = new PopoverModel();
        this.model.view = new PopoverContentView({model: this.model});

        this.item = this.$('.btn[data-target]');
        this.item.popover({
            html: true,
            content: this.model.view.render().el
        });
    },

    button_click: function(event) {
        if (!this.popover) {
            this.model.url = 'js/data1.json';
            this.model.fetch({
                success: this.model_fetched
            });
        } else {
            this.popover = false;
        }
    },

    model_fetched: function() {
        if (!this.popover) {
            this.item.popover('show');
        } else {
            this.item.popover('hide');
        }

        this.popover = !this.popover;
    },

    change_content: function(event) {
        this.model.set('content', 'Some random content... ' + parseInt(Math.random() * 10));
    }
});

var PopoverModel = Backbone.Model.extend({
    defaults: {
        content: ''
    }
});

var PopoverContentView = Backbone.View.extend({
    initialize: function() {
        _.bindAll(this);
        this.listenTo(this.model, 'change', this.render);
    },

    render: function() {
        this.$el.html(_.template('<%= content %>', this.model.toJSON()));
        return this;
    }
});


var main = new Main({
    el: '.container'
});
Run Code Online (Sandbox Code Playgroud)