本文介绍了ColdFusion 认为“虚假"的所有值是什么?和“真实"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望编制一份 ColdFusion 认为虚假和真实的值的完整列表.我知道的有:

I'm looking to compile a complete list of values that ColdFusion considers falsy and truthy. The ones I know of are:

//falsy values
false
"false"
0
"no"

//truthy values
true
"true"
!= 0
"yes"

这里有什么我遗漏的吗?

Is there anything that I'm missing here?

推荐答案

这里有一篇简洁的小文章 http://www.coldfusionmuse.com/index.cfm/2010/2/5/Booleans.and.Coldfusion

There's a neat little article on that here http://www.coldfusionmuse.com/index.cfm/2010/2/5/Booleans.and.Coldfusion

但当然正式它是 http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec09af4-7fd0.html

在布尔表达式中,True、非零数字和字符串Yes"、1"、True"等价;and False, 0 和字符串No"、0"和False"是等价的.

布尔求值不区分大小写.例如,True、TRUE 和 true 是等价的.

Boolean evaluation is not case sensitive. For example, True, TRUE, and true are equivalent.

所以,使用你的术语:

//falsy values
False
"False"
0
"No"

//truthy values
True
"true"
!= 0
"Yes"
"1"

这篇关于ColdFusion 认为“虚假"的所有值是什么?和“真实"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 13:58