gpt4 book ai didi

javascript - Marionette.js 模板打印不完整

转载 作者:行者123 更新时间:2023-11-28 02:09:42 34 4
gpt4 key购买 nike

<script id="my-template" type ="text/template">
<div>test</div><br/>
<%=console.log("ENFIN")%>
</script>

当我调用我的模板时:

var myView = new ProfileView({model: myProfile});
myView.render();

仅出现控制台日志,不出现测试

有什么想法吗?

非常感谢

最佳答案

用 DIV 标签将脚本模板中的所有内容包裹起来...这将解决您的问题

<script id = "my-template" type = "text/template"> 
<div>
<div>test</div>
<%=console.log( "ENFIN")%>
</div>
</script>

关于javascript - Marionette.js 模板打印不完整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17297181/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com