ColdFusion 认为“虚假”的所有值有哪些?和“真实”?
我希望编制一份 ColdFusion 认为虚假和真实的值的完整列表。我所知道的是:
//falsy values
false
"false"
0
"no"
//truthy values
true
"true"
!= 0
"yes"
我在这里缺少什么吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有一篇关于此的简洁的小文章 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
所以,用你的术语:
There's a neat little article on that here http://www.coldfusionmuse.com/index.cfm/2010/2/5/Booleans.and.Coldfusion
but of course officially it's http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec09af4-7fd0.html
So, using your terminology: