React-bootstrap formcontrolId
の使用法は何ですか?レガシー形式で使用するname
と似ていますか?
<form>
<FormGroup
controlId="formBasicText" ---------------------->> what is the use?
validationState={this.getValidationState()}
>
<ControlLabel>Working example with validation</ControlLabel>
<FormControl
type="text"
value={this.state.value}
placeholder="Enter text"
onChange={this.handleChange}
/>
<FormControl.Feedback />
<HelpBlock>Validation is based on string length.</HelpBlock>
</FormGroup>
</form>
[〜#〜] docs [〜#〜] が言うように:
<FormControl>
にidを設定し、<FormGroup.Label>
にhtmlFor
を設定します。
基本的には、入力のid
とラベルのfor
属性です。