gpt4 book ai didi

javascript - ReactJS:如何在单选按钮中使用 bool 值?

转载 作者:数据小太阳 更新时间:2023-10-29 04:05:08 25 4
gpt4 key购买 nike

在单选按钮中使用 bool 数据的正确方法是什么。如果直接使用,这些值将从 bool 值转换为字符串。

预加载的输入字段的 JSON 数据:

var question = [
{value: true, name: "Yes"},
{value: false, name: "Not this time"}
]

单选按钮字段:

<input type="radio" 
name="question"
onChange={this.state.onRadioChange}
value={this.state.question[0].value} /> {this.state.question[0].name}
<input type="radio"
name="question"
onChange={this.state.onRadioChange}
value={this.state.question[1].value} /> {this.state.question[1].name}

onRadioChange 的绑定(bind):

onRadioChange: function(e) {
console.log(e.target.value);
}

控制台日志显示所选值已从 bool 值转换为字符串。

处理此问题的一种方法是向 onRadioChange 函数添加一个额外的函数,以将 "true"/"false" 字符串从 e 转换为 bool 值。 target.value 但感觉有点骇人听闻。此外,仅使用“e.target.checked”是行不通的,因为在某些单选按钮组中我有 bool 值以外的其他值(需要传递)。

一些通用且干净的解决方案是使用在 REST 之间转换的常量值表。

是否有任何特殊的 ReactJS 方法可以做到这一点?也许不是。

最佳答案

目前的解决方案是在保存之前将传递的属性从字符串值转换为 bool 值。

var str2bool = (value) => {
if (value && typeof value === "string") {
if (value.toLowerCase() === "true") return true;
if (value.toLowerCase() === "false") return false;
}
return value;
}

并调用转换:

onRadioChange: function(e) {
console.log(str2bool(e.target.value));
// Here we can send the data to further processing (Action/Store/Rest)
}

这样,数据就可以通过操作发送到 Rest 或 Stores,并且可以直接与单选按钮一起使用。

关于javascript - ReactJS:如何在单选按钮中使用 bool 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34547733/

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