微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

需要基于reactjs中的单选按钮输入填充值

如何解决需要基于reactjs中的单选按钮输入填充值

我想基于单选按钮输入填充文本字段的值,例如,如果单选按钮输出为yes,则它将文本字段值设置为“ This is from yes”,如果单选按钮输出vale为no,则它将将文本字段值设置为“这是从无到有”

解决方法

这可能react-native-simple-radio-button

有帮助
import RadioForm,{RadioButton,RadioButtonInput,RadioButtonLabel} from 'react-native-simple-radio-button';
import { Text } from "react-native";


var radio_props = [
  {label: ‘Yes’,value: "This is from yes" },{label: ‘No’,value: "This is from no" }
];

export default class App {

  state = { textValue: radio_props[0].value} 
  
  render() {
    return (
      <View>
        <RadioForm
          radio_props={radio_props}
          initial={0}
          onPress={(value) => {this.setState({textValue:value})}}
        />
        <Text>{this.state.textValue}</Text>
      </View>
    );
  }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。