我使用玉作为 express.js 视图引擎,我使用 Micro-Templating ;这是我遇到的一个问题是模板
script(id='form',type='text/html')
select(id='select_category',name='product_category')
option <%= option%>
使用模板
$(tmpl('form',{'option':'something'}))
现在我有不止一个选择,所以这就是我所做的
我更改模板
script(id='form',type='text/html')
select(id='select_category',name='product_category')
each val,key in <%= option%>
option <%= val%>
使用
$(tmpl('form',{'option':[some arr]}))
这将导致错误提示“Unexpected token <”;
那么我该怎么做呢?