如何将 handlebars 部分参数转换为 pug/jade?

How to convert handlebars partial parameters to pug/jade?

对我来说小而难的问题。如何将此代码转换为哈巴狗?我目前正在学习网络编程并用 pug 编写我的第一个项目。

{{#each people}}
   {{> myPartial prefix=../prefix firstname=firstname lastname=lastname}}.
{{/each}}

Pug 没有部分,但它有 mixins,这是一个类似的概念,允许您重复使用参数并将参数传递给代码块。

假设您已将 myPartial 重写为名为 myMixin 的有效混合,并假设 people 是具有属性 firstname 和 [=15= 的对象数组], 你可以在 Pug 中这样写:

each person in people
  +myMixin(person.firstname, person.lastname)