jade を 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]}))
これにより、「予期しないトークン <」というエラーが発生します。
どうすればこれを行うことができますか?