我正在Symfony 1.4开发环境中试验JS库。我想使用Handlebarsjs。语义标记通常包含在脚本标记内,脚本标记基本上指向handlebars.js。使用Handlebars.js渲染时, symfony模板的代码如下所示:
<script type ="text/x-handlebars-templates" id="dashboard" name="handlebarsDashboard" src="handlebars.js">
<section>
<!-- render semantic markup -->
</section>
</script>
handlebars.js文件位于 /web/js/handlebars.js 中。在我的应用程序的View.yml中,我有:
javascripts : [handlebars.js]
虽然我认为上述内容并不重要。
问题是,没有任何东西可以呈现。所以这主要是因为Symfony IMO。
有人想告诉我发生了什么事吗?