哈巴狗-将参数传递到块

时间:2019-07-07 22:37:00

标签: node.js express templates pug

我想要类似的行为:

ListView.pug

mixin ListView(list)
 ul
  each x of list
   li hello #{x}
   block

index.pug

include ListView
+ListView(['1','2','3'])
  b x //how can I achieve this?

这应该显示一个列表:

  • 你好1 1
  • 你好2 2
  • 你好3 3

在哈巴狗这可能吗?

0 个答案:

没有答案