React Bootstrap:输入字段和 ref

React Bootstrap: Input field along with ref

如何使用 react-bootstrap <Input>ref

import { Input } from 'react-bootstrap'

<input ref={node => {
      input = node
    }} placeholder="Enter text"/>

当我将上面的代码更改为如下所示的代码时,输​​入字段消失,没有任何错误。需要一些关于如何使用 react-bootstrap <Input> fieldref

的帮助
<Input type="text" ref={node => {
      input = node
    }} placeholder="Enter text"/>

存在一种称为输入包装器的东西,它没有任何 type。可以轻松完成。很抱歉为此打扰了 Whosebug。

<Input wrapperClassName="wrapper">
    <input className="form-control" ref={node => {
      input = node
    }} placeholder="Enter text"/>
</Input>