我有一个关于玉的问题。我想将它与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。任何提示如何实现?
答案 0 :(得分:0)
我现在使用帕格,它的工作原理如下:
- var prodUrl = "products/\<%- id %\>/\<%- name.toLowerCase().replace(/ /gi, '-') %\>";
a.more(href!=homeUrl+prodUrl)