gpt4 book ai didi

javascript - 在数组中传递 boolean 求值结果的语法?

转载 作者:行者123 更新时间:2023-12-01 00:57:21 26 4
gpt4 key购买 nike

我不确定这是一个以 Angular 为中心的问题还是只是普通的旧 JS 语法问题。我显然变得生疏了,因为这感觉像是一个愚蠢的问题,但是......

我试图将 if/then 语句的结果作为数组变量传递到我的 Angular 模板中。示例:

<div my-angular-component [variables]="{title: 'hello world', isSelected: true}"></div> 

问题是,我不想传递 boolean 值“true”,而是想传递一些逻辑的结果,所以它看起来像这样:

<div my-angular-component [variables]="{title: 'hello world', isSelected: if(a=b){pass in true}else{pass in false}}"></div> 

可以直接在数组本身中完成吗?

最佳答案

当然,使用 boolean 代数:

isSelected: a === b

或者,如果您想要更高级的值,则使用三元:

isSelected: a === b ? 1 : 0

关于javascript - 在数组中传递 boolean 求值结果的语法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56439114/

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