gpt4 book ai didi

Javascript:通过变量分配 bool 属性不起作用

转载 作者:行者123 更新时间:2023-11-28 19:40:22 25 4
gpt4 key购买 nike

我想将字符串变量转换为 bool 值。

当我分配一个没有变量的属性时,它正在工作:

.Set( 'bevel', false )  // working

现在我想通过这样的变量分配它:

function abc(prop){

.Set( 'bevel', prop ) // not working
.Set( 'bevel', Boolean(prop) ) // this is also not working
}

最佳答案

var prop = 'true'; 应该不加引号

var prop = true;

将 bool 值与字符串一起使用,它将返回 true,就好像它是字符串一样,并且包含字符串结果为 true

Boolean('true');//true
Boolean('false');//true

关于Javascript:通过变量分配 bool 属性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25198655/

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