如何在React的Bootstrap切换菜单中设置移动按钮?

时间:2019-01-19 19:21:12

标签: reactjs

我在React中使用bootstrap 4.0。只是简单的引导程序:

import React from "react";
import ReactDOM from "react-dom";
import "bootstrap/dist/css/bootstrap.css";

如何使它与React一起正常工作。当我使用移动和中等尺寸的屏幕时,它会出现,但无法正常工作。在这种情况下正确的方法是什么?通过手动切换创建本地状态?

在这里观看其工作原理:project

1 个答案:

答案 0 :(得分:1)

这里是一个例子 https://reactstrap.github.io/components/navbar/

这正在使用reactstrap,但可以帮助您了解如何在react中做到

import React from 'react';
import { Collapse, Navbar, NavbarToggler, NavbarBrand, Nav, NavItem, NavLink } from 'reactstrap';

export default class Example extends React.Component {
  constructor(props) {
   super(props);

   this.toggleNavbar = this.toggleNavbar.bind(this);
   this.state = {
    collapsed: true
   };
  }

 toggleNavbar() {
  this.setState({
   collapsed: !this.state.collapsed
  });
}


render() {
    return (
      <div>
        <Navbar color="faded" light>
          <NavbarBrand href="/" className="mr-auto">reactstrap</NavbarBrand>
          <NavbarToggler onClick={this.toggleNavbar} className="mr-2" />
          <Collapse isOpen={!this.state.collapsed} navbar>
            <Nav navbar>
              <NavItem>
                <NavLink href="/components/">Components</NavLink>
              </NavItem>
              <NavItem>
                <NavLink href="https://github.com/reactstrap/reactstrap">GitHub</NavLink>
              </NavItem>
            </Nav>
          </Collapse>
        </Navbar>
      </div>
    );
  }
}