防止脚本模板的Jade插值

时间:2012-11-21 21:15:29

标签: node.js backbone.js underscore.js pug

我正在使用node.js和express.j来呈现一个index.jade页面,其中包含几个脚本块,其中包含要通过主干和下划线使用的模板。我面临的问题是由于包含了<%=%>模板中的样式变量,Jade渲染失败。以下代码段会导致语法错误:

script#tpl-things-list-item(type='text/template')
  td 
    a(href=<%= _id %>) link text
  td <%= name %>
  td <%= age %>

请注意,当我在href值中使用变量时,这只是一个问题,如果我删除整个href,这个片段工作得很好。有办法解决这个问题吗?我想继续使用Jade来定义模板,因为它非常简洁,但这是一个显示停止。

1 个答案:

答案 0 :(得分:3)

知道了。

!!! 5
html(lang='en')
    head
        title= title
    body
        h1= "Hello World!"
        script#tpl-things-list-item(type='text/template')
            td
                a(href!="<%= _id %>") link text
            td <%= name %>
            td <%= age %>