0

您好我一直在尝试使用backbonejs 和handlebar 模板,但似乎我的json 错误或数据未正确解析。得到

Uncaught Error: You must pass a string to Handlebars.compile. You passed undefined

代码可以在

jsfiddle

任何建议将被认真考虑

4

1 回答 1

6

你的小提琴以各种方式被打破,但你很可能正在这样做:

template: Handlebars.compile($('#tpl-page-list-item').html()),

在有#tpl-page-list-item可用之前。如果您的页面如下所示,就会发生这种情况:

<script src="your_backbone_javascript.js"></script>
<script id="tpl-page-list-item" ...></script>

因为您的 Backbone 视图将在<script id="tpl-page-list-item">添加到 DOM 之前进行解析。您可以将 Backbone 视图包装在文档就绪处理程序中(使用适当的命名空间来说明函数包装器):

$(function() {
    window.PageListItemView = Backbone.View.extend({
        template: Handlebars.compile($('#tpl-page-list-item').html()),
        //...
    });
});

或在实例化视图时编译模板:

initialize: function() {
    // Or check if it is in the prototype and put the compiled template
    // in the prototype if you're using the view multiple times...
    this.template = Handlebars.compile($('#tpl-page-list-item').html());
    //...
}
于 2013-11-07T20:08:40.077 回答