0

我在节点应用程序上使用 bootstrap4 的 reactstrap impimentation。这是我的第一次,我需要一点帮助。如何让导航栏一直折叠(无论屏幕大小)?这是来自 reactstrap github 页面的示例代码:

class App extends Component {
  constructor(props) {
    super(props);

    this.toggle = this.toggle.bind(this);
    this.state = {
      isOpen: false
    };
  }
  toggle() {
    this.setState({
      isOpen: !this.state.isOpen
    });

render() {
return (
<Navbar color="inverse" inverse toggleable>
          <NavbarToggler right onClick={this.toggle} />
          <NavbarBrand href="/">reactstrap</NavbarBrand>
          <Collapse isOpen={this.state.isOpen} navbar>
            <Nav className="ml-auto" navbar>
              <NavItem>
                <NavLink href="/components/">Components</NavLink>
              </NavItem>
              <NavItem>
                <NavLink href="https://github.com/reactstrap/reactstrap">Github</NavLink>
              </NavItem>
            </Nav>
          </Collapse>
        </Navbar>
)}
4

1 回答 1

0

这可能会有所帮助。

文档中有一个示例。 https://reactstrap.github.io/components/navbar/

render() { return ( reactstrap 组件 Github );

于 2017-09-10T18:43:08.377 回答