rancher/ui 中 Handlebars 模板中使用 条件表达式

174 阅读1分钟
  {{#if (and (eq a "hello") str )}}
    <div class="try-dashboard bg-secondary">
      <a href="{{str}}" target="_blank" class="btn">{{t "nav.cluster.tracing"}}</a>
    </div>
  {{/if}}

如果变量a等于 hello 并且str 为真时 会渲染中间的部分

注意小括号 and  eq  关键字