Using Handlebars with Backbone

后端 未结 4 647
隐瞒了意图╮
隐瞒了意图╮ 2020-12-22 19:20

I am learning Backbone/Handlebars/Require. I have looked all over online and on SO - are there any tutorials or websites that you can direct me to that would provide helpful

4条回答
  •  青春惊慌失措
    2020-12-22 20:04

    define(["app", "handlebars",
        "text!apps/templates/menu.tpl"
    ], function (app, Handlebars, template) {
    
        return {
            index: Marionette.ItemView.extend({
                template: Handlebars.compile(template),
                events: {
                    'click .admin-menu-ref': 'goToMenuItem'
                },
                goToMenuItem: function (e) {
                   //......
                }
            })
        }
    });
    
    
     new view.index({model: models});
    

提交回复
热议问题