meh*_*ine 2 forms checkbox reactjs react-redux
我试图检索我的复选框的检查值,但我得到空值这是我的代码
<form onSubmit={this.onSubmit}>
<fieldset>
<legend>RFX/RFP:</legend>
<div className="form-check">
<input type="checkbox" className="form-check-input" onChange={this.onChange} value={this.state.rfx} name="rfx" id="rfx" />
<label className="form-check-label" name="rfx">RFX</label>
<input type="checkbox" className="form-check-input" onChange={this.onChange} value={this.state.rfp} name="rfp" id="rfp" />
<label className="form-check-label" >RFP</label>
<input type="checkbox" className="form-check-input" onChange={this.onChange} value={this.state.rfp_x} name="rfp(x)" id="rfp(x)"/>
<label className="form-check-label" >RFP(X)</label>
<input type="checkbox" className="form-check-input" onChange={this.onChange}name="all" id="all" />
<label className="form-check-label" name="all" id="all">ALL</label>
</div>
</form>
Run Code Online (Sandbox Code Playgroud)
和我的方法:
constructor(props){
super(props)
this.state={
rfp:"",
rfx:"",
rfp_x:"",
all:"",
}
this.onChange = this.onChange.bind(this);
this.onSubmit = this.onSubmit.bind(this);
}
onChange(e){
this.setState({[e.target.name] : e.target.value});}
onSubmit(e){
e.preventDefault();
const FilterRegion={
rfx:this.state.rfx,
rfp:this.state.rfp,
rfp_x:this.state.rfp_x,
all:this.state.all,
}
console.log(FilterRegion)
}
Run Code Online (Sandbox Code Playgroud)
和我提交表单时的屏幕:
https://gyazo.com/32a24813545ebf7d3a48b72be724a76f
请我尝试解决我的问题并显示我的复选框的值或名称!我需要做什么
使用受控组件时,您不会获得值,您只需将其提供给 HTML:您的 javascript 状态是事实的来源。也就是说,您应该进行以下更改:
对复选框值使用布尔值:
this.state = {
rfp: false,
rfx: false,
rfp_x: false,
all: false
};
Run Code Online (Sandbox Code Playgroud)
使用event.target.checked代替event.target.value:
this.setState({ [e.target.name]: e.target.checked });
Run Code Online (Sandbox Code Playgroud)
演示:https : //codesandbox.io/s/polished-bush-5mf1n?file=/ src/ App.js
| 归档时间: |
|
| 查看次数: |
3980 次 |
| 最近记录: |