node.js - 我想在一个pug文件中使用另一个pug文件中的函数,就像js一样,该怎么写?

浏览:25日期:2022-09-26

问题描述

有几个重复的pug页面 内容差不多 想在同一个页面中展示 就像在js中写function一样 根据参数的不同 返回的内容不同 能否在一个pug中 写mixin()

例如: +show(where)if where = ’firstPage’ .wrapper.row .col-lg-12section.panel header.panel-heading 发送命令 .panel-bodyform.form-horizontal.adminex-form(method='POST') input(type='hidden', name='action', value='/device/deviceSendInformation/send') .form-grouplabel.col-sm-2.control-label.col-lg-2 命令:.col-sm-8 .input-group.m-bot15span.input-group-addoni.fa.fa-sort-numeric-ascinput#send.form-control(type='text', placeholder='输入命令', name='sendInfo', value=formData.sendInfo).col-sm-2 .control-label 11111          else if where = ’secondPage’ ......

就像这样 我想在别的pug文件中调用他 并输出不同的页面内容 该如何做?

问题解答

回答1:

incldue xx.jade

回答2:

pug 可以使用mixinsPug

相关文章: