帕格的条件声明

问题描述 投票:1回答:1

我有以下用例,在我的项目中,我有两个不同的页脚。感谢@sean的建议,我尝试了一个案例陈述。这是我的模板:

//- layout.pug
include head

body
    block nav
        include nav

    block content  

    block footer

        case chooseFooter
            when 1
                include footer1
            when 2 
                include footer2        

    block scripts
        script(src='js/index.js')

这是第一个页脚:

li
  .footer_contact1

li
  .footer_contact1

这是第二个页脚:

ul.boxes
      li
      .footer_contact2

    li
      .footer_contact2

这是调用模板的索引页面:

extend includes/layout

append content
    .promo

    ul.boxes
        li
          .boxes__text-wrapper
        li
          .boxes__text-wrapper
        li
          .boxes__text-wrapper
        li
          .boxes__text-wrapper

prepend footer
        - let chooseFooter = 1

问题符合如果我选择footer1,我得到以下输出:

<div class="promo">
    <p>some text</p>
  </div>
  <ul class="boxes">
    <li>
      <div class="boxes__text-wrapper"></div>
    </li>
    <li>
      <div class="boxes__text-wrapper"></div>
    </li>
    <li>
      <div class="boxes__text-wrapper"></div>
    </li>
    <li>
      <div class="boxes__text-wrapper"></div>
    </li>
</ul>
<li>
      <div class=".footer_contact1"></div>
 </li>
<li>
      <div class=".footer_contact1"></div>
 </li>

<script src="js/index.js"></script>

所以第一个页脚中的li:s在ul之外,它们应该在结束的ul里面。

如果我不使用案例代码并且只是执行普通包含并将其插入索引文件中的最后一个li项之后并使用以下内容:

li
   .boxes__text-wrapper

include includes/footer

然后在关闭的ul标签之前嵌入footer1 li项。但后来我自然不能只使用一个页脚。

我希望这次我更有意义。

谢谢 :)

html5 pug
1个回答
0
投票

试试这种方法。在模板块中设置conditionalcase语句,用于检查变量的值。

layout.pug

html
  head
    block head

  body
    nav
    block content
    block footer
      footer
        case whichFooter
          when 1
            p Some footer content
          when 2
            p Some other footer content
          default
            p Some other default footer content
    block scripts
      script(src='/my.js')
      script(src='/pets.js')

然后在页面中定义该变量,并将其添加到模板中的相应块。

page.pug

extends layout

append head
  title Page A

append content
  p My page content...

prepend footer
  - let whichFooter = 1

这样,你就可以在pug需要它来检查条件语句或case语句之前有效地定义变量。

(另外不要忘记将nav嵌入body而不是旁边。)

© www.soinside.com 2019 - 2024. All rights reserved.