是否可以在一次条件检查中为两个变量编写条件检查

Posted

技术标签:

【中文标题】是否可以在一次条件检查中为两个变量编写条件检查【英文标题】:Is it possible to write conditional check for two variable in one conditional check 【发布时间】:2018-05-11 19:27:47 【问题描述】:

我有两个条件需要检查禁用按钮的情况。

示例代码,我的做法

<div class="if isallowed 'notallowed' if isloading 'notallowed'">Submit</div>

谢谢。

【问题讨论】:

【参考方案1】:

你可以这样做:

<div class=unless isallowed 'notallowed' (if isloading 'notallowed')>Submit</div>

【讨论】:

【参考方案2】:

我喜欢在一般情况下使用ember-truth-helpers:

#if (and foo bar) foobar! /if

对于调整类(仅限组件),我使用classNameBindings。

classNameBindings: [isUrgent]

如果在组件上下文中 isUrgent 为真,这将向组件添加类 is-urgent。

【讨论】:

我不能使用 classNameBindings 因为提到的 div 不是组件的父 div,它是列表组件的图标。 你可以使用 ember-truth-helpers 吗?【参考方案3】:

我们可以通过使用 helper 来实现。

我为此创建了助手,并且对我来说工作正常。

助手'isany-true'

import Ember from 'ember';

export function anytrue(params) 
    return params.includes(true)


export default Ember.Helper.helper(anytrue);

示例

<div class="if (isany-true isdisableprev isloading) 'notallowed'">Submit</div>

【讨论】:

Alexma 的答案是正确的选择。您可以像这样使用 ember-truth-helper 插件 class=if (or isdisableprev isloading) 'notallowed'

以上是关于是否可以在一次条件检查中为两个变量编写条件检查的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 DAX 在 PowerBI 中为这个问题编写逻辑?

编写Shell脚本

检查两个链表是不是合并。如果有,在哪里?

如何编写条件来检查不在codeigniter数据库表中的csv文件数据?

编写检查所有pandas DataFrame列值是否满足某个值?

检查链表中的每个节点是不是存在 c 中的条件