Home  >  Q&A  >  body text

for 循环内嵌套if判断

<script type="text/html">
            {{# for(var i = 0, len = d.length; i < len; i++){ }}
            <li>
                <div class="info">
                    <p class="name">money:{{ d[i].money }}</p>
                    <p class="text">说明:{{ d[i].desc }}</p>
                    <p class="fans">时间:{{ d[i].time }}</p>
                </div>
            </li>
            {{# } }}
        </script>

在money这个位置需要添加一个判断,如果 {{ d[i].type}}=1,则显示“+”,否则显示“-”,后面跟{{ d[i].money }}
完整的就是:
money:(“+”或“-”){{ d[i].money }}
这个判断应该怎么写?
小白上路,求大神指点。


尼古拉阿列克塞耶维奇奥斯特洛夫斯基尼古拉阿列克塞耶维奇奥斯特洛夫斯基2804 days ago809

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:44:55

    for Nested if judgment within a loop - PHP Chinese website Q&A - for Nested if judgment within a loop - PHP Chinese website Q&A

    Take a look around and learn.

    reply
    0
  • 巴扎黑

    巴扎黑2017-03-09 09:51:43

    {{ d[i]['type'] == 1 ? '+' : '-' }}{{ d[i].money }}

    reply
    0
  • Cancelreply