web-dev-qa-db-ja.com

react-bootstrapのcontrolIdとは何ですか

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>
8
bashIt

[〜#〜] docs [〜#〜] が言うように:

<FormControl>にidを設定し、<FormGroup.Label>htmlForを設定します。

基本的には、入力のidとラベルのfor属性です。

enter image description here

12
Sagiv b.g