5

我在服务器端节点应用程序中使用 Express + Handlebars,并且我想将客户端模板作为我正在呈现的页面的一部分发送到浏览器。

索引.html

<html>
<head>
  <title>{{title}}</title>
</head>
<body>
  <div>
    {{stuff}}    
  </div>
  <script id="more-template" type="text/x-handlebars-template">
    <div>{{more}}</div>
  </script>
</body>

不幸的是,handlebars 试图在#more-template 脚本块中渲染这些东西。(这只是删除了,{{more}}因为它在服务器模板的上下文中未定义。

有没有办法让它忽略脚本标签内的东西?(以便客户端模板可以使用它)

我已经看到了这个问题:Node.js with Handlebars.js on server and client,我宁愿只使用 1 个模板引擎。

4

2 回答 2

10

通常,当您的模板被编译两次时(例如,当您只是服务器端时)并且您想在第一次运行时忽略模板标签,您可以简单地通过附加反斜杠来告诉车把忽略它们:

{{variable1}} \{{variable2}}

使用variable1set to编译value1并且variable2未定义时,您会得到:

value1 {{variable2}}

(而不是将第二个标签替换为空字符串)。

使用variable2set to编译第二次运行时value2,您会得到:

value1 value2

不是完美的解决方案(这将是 Handlebars 单独保留未定义变量的设置),但适用于我的特殊情况。

于 2015-05-16T14:35:02.680 回答
5

所以我没有找到轻松忽略客户端模板的方法,但普遍的共识是预编译您的客户端模板。

  1. 全球安装车把npm install handlebars -g
  2. 预编译您的模板handlebars client-template1.handlebars -f templates.js
  3. 包括 templates.js<script src="templates.js"></script>
  4. 执行模板var html = Handlebars.templates["client-template1"](context);

额外信息
在 Handlebars.js(jQuery Mobile 环境)中使用预编译模板
http://handlebarsjs.com/precompilation.html

于 2012-12-14T18:49:09.297 回答