这两者之间的区别是什么?或者它们是一样的吗?
官方常见问题解答中提及了{p>text/x-handlebars
:https://github.com/wycats/handlebars.js/blob/master/FAQ.md
<script type="text/x-handlebars"> foo <scr{{!}}ipt src="bar"></scr{{!}}ipt> </script>
虽然text/x-handlebars-template
位于文档中:http://handlebarsjs.com/
<script id="entry-template" type="text/x-handlebars-template"> <div class="entry"> <h1>{{title}}</h1> <div class="body"> {{body}} </div> </div> </script>