<script id="my-template" type ="text/template">
<div>test</div>
<%=console.log("ENFIN")%>
</script>
当我打电话给我的模板时:
var myView = new ProfileView({model: myProfile});
myView.render();
仅显示控制台日志,而不是测试
有什么想法吗?
非常感谢
答案 0 :(得分:1)
使用DIV标签将脚本模板中的所有内容包裹起来......这将解决您的问题
<script id = "my-template" type = "text/template">
<div>
<div>test</div>
<%=console.log( "ENFIN")%>
</div>
</script>