5

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

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

请注意,只有当我在 href 值中使用变量时才会出现问题,如果我删除整个 href,这个片段就可以正常工作。有没有办法解决这个问题?我想继续使用 Jade 来定义模板,因为它非常简洁,但这是一个阻碍。

4

1 回答 1

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 %>
于 2012-11-22T00:31:22.440 回答