我在react-native应用程序中使用react元素组件。
//FLASK CODE
app.route('/process', methods=['POST'])
def process():
minexp1=request.form.get("minexp")
maxexp1=request.form.get("maxexp")
return minexp1
在上面的代码中我在我的react-native应用程序中使用redux表单,通过传递onChange()我可以检索文本输入的值,但是如何检索单选按钮的值?目前表单包含文本输入仅值,我还需要添加单选按钮值。如果用户在单选按钮中选择一个值,我需要取消选择其他单选按钮如何实现?
答案 0 :(得分:-3)
您可以使用react-native-radio-input。 它非常易于使用。
import RadioGroup,{Radio} from "react-native-radio-input";
.
.
.
//Receive the checked value (ES6 syntax)
getChecked = (value) => {
// value = our checked value
alert(value)
}
<RadioGroup getChecked={this.getChecked}>
<Radio iconName={"lens"} label={"The first option"} value={"A"} />
<Radio iconName={"lens"} label={"The first option"} value={"B"} />
<Radio iconName={"lens"} label={"I need numbers"} value={1} />
<Radio label={"Is IconName Optional?"} value={"Yes"} />
<Radio label={"Show Sentence Value"} value={"This is a Sentence"} />
</RadioGroup>
.
.