我正在尝试实现 Spine.js 文档中给出的 Todo 示例,此处给出:http ://spinejs.com/docs/example_tasks
只有我想使用 Handlebars 而不是 jQuery.tmpl。我正在使用把手 1.0.rc.1
但是,当我尝试调用时:
template: Handlebars.compile($('#history-template').html()),
render: function(){
var t = this.template(this.item);
this.replace(t);
return this;
}
Handlebars 在以下位置引发异常this.template(this.item)
:
Uncaught TypeError: Cannot call method 'match' of undefined
在 Handlebars 词法分析器中,this._input
返回为未定义。
我的模板如下:
<script id='history-template' type='text/x-handlebars-template'>
<div class="content-inner {{#if viewed}}msg_unseen{{/if}}">
<div>{{data}}</div>
</div>
</script>
数据:
"[{"data":"hello","id":"c-0"}]"
有任何想法吗?