我试图插入一个简单的车把,像这样,但是支持太少了,官方页面中的指南很伤心,我无法做到这一点。
<head>
<!--HANDLEBAR-->
<script type="text/x-handlebars" data-template-name="say-hello">
Hello, <b>{{name}}</b>
</script>
<!--VIEW-->
<script>
var view = Ember.View.create({
templateName: 'say-hello',
name: "Bob",
});
view.appendTo('#templateHere'); //here I try to append the view
</script>
在萤火虫中我得到错误:找不到模板“say-hello”............但我不知道为什么找不到它