gpt4 book ai didi

html - 如果一个部分存在而不迭代, mustache 有没有办法渲染一个 block ?

转载 作者:搜寻专家 更新时间:2023-10-31 08:31:31 25 4
gpt4 key购买 nike

我有一个带有标题的部分,我只想在填充数组时显示它,如下所示:

<h1> These are the elements in the array </h1>
<ul>
{{#myArray}}
<li>{{name}} - {{value}}</li>
{{/myArray}}
</ul>

如何渲染 <h1>仅当myArray人口稠密?

如果我将它放在 # 部分,它会为数组中的每个元素渲染一次,这不是我想要的。

正确的做法是什么?

最佳答案

{{#myArray.length}}
<h1> These are the elements in the array </h1>
{{/myArray.length}}

对于空数组,.length 将返回 0,因此我们获得了一个真正的错误值。

DEMO

在 PHP 方面:

{{#myArray.0}}
<h1> These are the elements in the array </h1>
{{/myArray.0}}

关于html - 如果一个部分存在而不迭代, mustache 有没有办法渲染一个 block ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23786670/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com