reactstrap 相关问题

Bootstrap 4的无状态React组件。

可以使用带有react-hook-form和react-input-mask的reactstrap吗?

我已经尝试了一段时间,但没有成功。我设法实现了reactstrap + react-hook-form和reactstrap + react-input-mask,但没有实现这三个。这是代码...

回答 1 投票 0

是否有可能在关闭Reactstrap模式之前将其卸载?

我有一个包含Reactstrap模态的组件。模态函数完成后,将调用切换函数。此外,不再安装模态,因为应该使用其他组件...

回答 1 投票 0

反应:包含模态的形式将无法识别传递给它的类型函数的道具

这是一个非常具体的问题,我已经在这个网站和网络上搜索了数小时来尝试解决它。 Mod请不要在没有阅读完的情况下禁用此帖子。我可以通过函数来 控制...

回答 1 投票 0

反应模态无法正确显示

我遇到模态问题时无法正确显示。当我单击按钮时,屏幕变为全灰色,而没有向我显示模态的内容,当我尝试在...中插入文本...

回答 1 投票 5

反应-展开/折叠全部>>

我想通过单击一个按钮来展开/折叠全部。使用reactstrap并在container(index.js)中使用创建的组件创建了一个新的CollapsiblePanel组件。现在我可以...

回答 1 投票 0

我如何使我的react-strap边栏具有可折叠的链接

我有一个简单的边栏,它使用reactjs和reactstrap。目前,我的侧边栏的下拉菜单涵盖了单击时较低的下拉菜单。如何更改此设置,以便在单击时推动侧边栏链接...

回答 1 投票 0

如何调整Reactstrap中元素的宽度?

我想使用Reactstrap缩短输入元素的宽度,我该怎么做?我尝试将bsSize设置为small,但仍然无法正常运行 [] >>

回答 1 投票 0

在create-react-app中,添加Bootstrap 4?

由于create react app隐藏Webpack配置而不必使用eject ,如果我想使用像reactstrap或react bootstrap之类的东西...

回答 4 投票 17

如何在单击编辑按钮时以Reactstrap形式从Ant Design弹出确认模式

我在用reactstrap构建的编辑模式触发确认弹出窗口时遇到问题。当前,当我单击“编辑”按钮并填写编辑表单时,我单击“提交”,并希望看到...

回答 1 投票 0

如何使用Reactstrap自定义列

我正在使用reactstrap来显示电影海报网格。我必须显示20个项目,我以此方式为md = {2}设置列的大小,我希望每行获得5个项目,因为我总是...

回答 1 投票 0

即使所有内容都受到控制,也会得到不受控制的输入错误

我需要您的帮助,我正在尝试使用react-strap中的表单,由于某些原因,我收到此错误:警告:组件将类型为password的受控输入更改为不受控制。输入...

回答 1 投票 0

reactjs通过表分页

我正在使用reactjs。我正在用api列出数据。我使用reactstrap表向用户显示我收到的数据。但我想分页。一页上最多显示6条记录,其他记录为...

回答 3 投票 0


正确格式化Bootstrap列? (偏移等)

当前,这是页面的外观:页 面的布局应为左侧的4张缩略图,然后在其右侧是带有信息框的大图像,然后是...] >

回答 2 投票 0

我正在尝试从最低级别组件上的输入字段捕获数据

我的状态位于我的APP级别组件中,并且我试图捕获放入表单组件中的数据。我正在使用挂钩,但是我无法弄清楚自己在做什么错!我尝试过...

回答 1 投票 0

反应:import'../node_modules/bootstrap/dist/css/bootstrap.min.css';错误

我正在使用reactstrap库,但是当我使用import'../node_modules/bootstrap/dist/css/bootstrap.min.css'时,已成功安装引导程序和reactstrap;反应不会编译。是否有...

回答 1 投票 0

如何获得Reactstrap的CustomInput Switch组件的状态,以及如何从阵列映射开关?

{this.props.diseases.map((疾病,索引)=>( []] 对于第1点,y您可以使用e.target.checked检查特定CustomInput的是/否状态;选中this stackblitz即可正常工作 对于第2点,如果您共享现有代码,则可以更轻松地帮助解决您的特定情况 相关 js : class App extends Component { constructor() { super(); this.state = { name: "World to React", log: [] }; this.customInputSwitched.bind(this); } customInputSwitched(buttonName, e) { let newStr = `we received ${e.target.checked} for ${buttonName}...`; console.log(newStr); let newLog = [...this.state.log, newStr]; this.setState({ log: newLog }); } render() { var testName = "modal for testing - click here"; return ( <div> <Hello name={this.state.name} /> <p>Start editing to see some magic happen :)</p> <Form> <FormGroup> <Label for="exampleCheckbox">Switches</Label> <div> <CustomInput type="switch" id="exampleCustomSwitch" name="customSwitch" label="Turn on this custom switch" onChange={this.customInputSwitched.bind(this, "button1")} /> <CustomInput type="switch" id="exampleCustomSwitch2" name="customSwitch" label="Or this one" onChange={this.customInputSwitched.bind(this, "button2")} /> <CustomInput type="switch" id="exampleCustomSwitch3" label="But not this disabled one" disabled /> <CustomInput type="switch" id="exampleCustomSwitch4" label="Can't click this label to turn on!" htmlFor="exampleCustomSwitch4_X" disabled /> </div> </FormGroup> </Form> {this.state.log} </div> ); } } UPDATE#1 :鉴于下面提问者的评论 https://stackblitz.com/edit/react-rcqlwq处的代码中的几个问题 您必须实例化构造器中的Log in状态 customInputSwitched函数应传递特定按钮的参数,而不是硬编码的“ button1”-因此我们添加疾病的索引号 所有按钮的ID不能是相同的'exampleCustomSwitch',因此我们只需将索引号添加到ID中>] 映射为数组的最佳实践是还包括一个索引,它有好处(如以下两点所示) 相关的工作JS用于您的代码/堆栈闪电: class App extends Component { constructor() { super(); this.state = { diseases: [ "Normal", "Over inflated lungs", "Pneumonia", "Pneumothorax", "Congestive cardiac failure", "Consolidation", "Hilar enlargement", "Medical device", "Effusion" ], log: [] }; this.customInputSwitched.bind(this); } customInputSwitched(buttonName, e) { let newStr = `we received ${e.target.checked} for ${buttonName}...`; console.log(newStr); let newLog = [...this.state.log, newStr]; this.setState({ log: newLog }); } render() { return ( <div> <p>Start editing to see some magic happen :)</p> <Form> <FormGroup> <Label for="exampleCheckbox">Switches</Label> {this.state.diseases.map((disease, index) => { //console.log(disease, index); let idName = "exampleCustomSwitch"+index; return ( <div key={index}> <CustomInput type="switch" id={idName} name="customSwitch" label={disease} onChange={this.customInputSwitched.bind(this, "button"+index)} /> </div> ); } )} </FormGroup> </Form> {this.state.log} </div> ); } }

回答 1 投票 0

import'../node_modules/bootstrap/dist/css/bootstrap.min.css';错误

我正在使用reactstrap库,但是当我使用import'../node_modules/bootstrap/dist/css/bootstrap.min.css'时,成功安装了bootstrap和reactrap;反应不会编译。是否有...

回答 1 投票 0

在React中在表上创建可扩展行的简单方法是什么?

我尝试查找此内容,但除了库之外,什么都没做,对于这样一个简单的任务来说有点大。我很好奇,如果你们中的任何人知道表行的onclick事件会扩展的简单方式...

回答 1 投票 0

[DropdownMenu and DropdownItem onClick with ReactJS / Reactstrap

我想拥有一个带有dropdownItem的dropdownMenu,当我单击一个项目时,它会显示参考项目。但是实际上,当我单击时,切换功能没有任何反应:处理下拉handleClick:...

回答 1 投票 1

© www.soinside.com 2019 - 2024. All rights reserved.