用于主干使用的玉模板

时间:2016-08-07 09:01:56

标签: node.js backbone.js pug

我有一个关于玉的问题。我想将它与Backbone一起使用,它适用于这个问题how-to-define-jade-template-for-using-with-backbone。但现在我需要创建一个URL。我试过这样的话:

a.more(href!="#{homeUrl}products/<%- id -%>/<%- name.toLowerCase().replace(/ /gi, '-') -%>" title!="<%- name %>")

我总是得到一个SyntaxError:意外的令牌&#39;)&#39;。所以我想做的是:我有一个Jade变量homeUrl,我想在开头,然后id和名称用斜杠分隔成解析url。任何提示如何实现?

1 个答案:

答案 0 :(得分:0)

我现在使用帕格,它的工作原理如下:

- var prodUrl = "products/\<%- id %\>/\<%- name.toLowerCase().replace(/ /gi, '-') %\>";
a.more(href!=homeUrl+prodUrl)