“Nav.Link React Bootstrap Router nie odświeżaj” Kod odpowiedzi

React-Bootstrap Link NAV Link odświeża stronę

import { Route, RouteHandler, Link } from 'react-router';
import AuthService from '../services/AuthService'
import { Button, Nav, Navbar, NavDropdown, MenuItem, NavItem } from 'react-bootstrap';
import { LinkContainer } from 'react-router-bootstrap';

/// In the render() method
<Nav pullRight>
  <LinkContainer to="/home">
    <NavItem eventKey={1}>Home</NavItem>
  </LinkContainer>
  <LinkContainer to="/book">
    <NavItem eventKey={2}>Book Inv</NavItem>
  </LinkContainer>
  <NavDropdown eventKey={3} title="Authorization" id="basic-nav-dropdown">
    <LinkContainer to="/logout">
      <MenuItem eventKey={3.1}>Logout</MenuItem>    
    </LinkContainer>      
  </NavDropdown>  
</Nav>
Winged Ketchup

Jak nawigować z Navintems dla React-Bootstrap bez odświeżania całej strony

import { Link } from 'react-router-dom'

<Nav.Link as={Link} to="/">
Yasiel Cabrera

Nav.Link React Bootstrap Router nie odświeżaj

navLink as link
Rasel Mahmud

Odpowiedzi podobne do “Nav.Link React Bootstrap Router nie odświeżaj”

Pytania podobne do “Nav.Link React Bootstrap Router nie odświeżaj”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu