如何在Node.js中使用Jade进行for循环

时间:2014-10-18 20:27:30

标签: javascript node.js for-loop express pug

我是Node.js / Express / Jade的新手,我无法想象如何进行for循环。我在网上搜索但没有找到答案。此外,玉文档几乎是空的。

这是我想要做的:

当我在网址/count/:number中时,我想从0开始计算到该数字并显示数字。我试过了,但它没有工作:

h1 I'm gonna count to  #{number}

  script(type='text/javascript')
    for(i = 0, i < number; i++) {
      p #{i}
    }

我收到此错误:Duplicate attribute "i" is not allowed. 我已经尝试过这个解决方案,但它没有工作: Loop in Jade (currently known as "Pug") template engine

我也不明白为什么会有&#39; - &#39;前?

0 个答案:

没有答案