可以将 reactstrap 与 react-hook-form 和 react-input-mask 一起使用吗?
It is possible to use reactstrap with react-hook-form and react-input-mask?
我已经尝试了一段时间但没有成功。我已经设法实现了 reactstrap + react-hook-form 和 reactstrap + react-input-mask 但不是三个一起。这是代码 运行:https://stackblitz.com/edit/reactstrap-v5beta-input-mask-yu6zii?file=Example.js
import React from 'react';
import { Input } from 'reactstrap';
import useForm from 'react-hook-form'
import InputMask from 'react-input-mask';
const Example = () => {
const { register, handleSubmit, errors } = useForm()
const onSubmit = data => console.log(data)
console.log(errors)
return (
<div>
<form onSubmit={handleSubmit(onSubmit)}>
<label>react-hook-form</label>
<Input
type='text'
name='input-1'
invalid={errors['input-1']}
innerRef={register({ required: true })}
/>
<br />
<label>react-input-mask</label>
<Input
type="tel"
mask="+4 99 999 99"
maskChar=" "
tag={InputMask}
/>
<br />
<input type="submit" />
</form>
</div>
)
}
export default Example;
您是否将 Bootstrap 添加到您的项目中? Reactstrap 不是开箱即用的。
"从 NPM 安装 reactstrap 和 Bootstrap。Reactstrap 不包括 Bootstrap CSS 所以这也需要安装:
npm install --save bootstrap
npm install --save reactstrap react react-dom
在src/index.js文件中导入BootstrapCSS:
import 'bootstrap/dist/css/bootstrap.min.css';
在 src/App.js 文件或您的自定义组件文件中导入所需的 reactstrap 组件:
import { Button } from 'reactstrap';
现在您可以在 render 方法中定义的组件层次结构中使用导入的 reactstrap 组件了。这是使用 reactstrap 重做的示例 App.js。"
Documentation 显示导入 "Controller" 并且 "control" 用作包装器来执行您想要的操作。他们解释得很好所以只需向下滚动到示例
我已经尝试了一段时间但没有成功。我已经设法实现了 reactstrap + react-hook-form 和 reactstrap + react-input-mask 但不是三个一起。这是代码 运行:https://stackblitz.com/edit/reactstrap-v5beta-input-mask-yu6zii?file=Example.js
import React from 'react';
import { Input } from 'reactstrap';
import useForm from 'react-hook-form'
import InputMask from 'react-input-mask';
const Example = () => {
const { register, handleSubmit, errors } = useForm()
const onSubmit = data => console.log(data)
console.log(errors)
return (
<div>
<form onSubmit={handleSubmit(onSubmit)}>
<label>react-hook-form</label>
<Input
type='text'
name='input-1'
invalid={errors['input-1']}
innerRef={register({ required: true })}
/>
<br />
<label>react-input-mask</label>
<Input
type="tel"
mask="+4 99 999 99"
maskChar=" "
tag={InputMask}
/>
<br />
<input type="submit" />
</form>
</div>
)
}
export default Example;
您是否将 Bootstrap 添加到您的项目中? Reactstrap 不是开箱即用的。
"从 NPM 安装 reactstrap 和 Bootstrap。Reactstrap 不包括 Bootstrap CSS 所以这也需要安装:
npm install --save bootstrap
npm install --save reactstrap react react-dom
在src/index.js文件中导入BootstrapCSS:
import 'bootstrap/dist/css/bootstrap.min.css';
在 src/App.js 文件或您的自定义组件文件中导入所需的 reactstrap 组件:
import { Button } from 'reactstrap';
现在您可以在 render 方法中定义的组件层次结构中使用导入的 reactstrap 组件了。这是使用 reactstrap 重做的示例 App.js。"
Documentation 显示导入 "Controller" 并且 "control" 用作包装器来执行您想要的操作。他们解释得很好所以只需向下滚动到示例