React Router Without Changing URL

后端 未结 2 1043
野性不改
野性不改 2020-12-18 20:19

I need to have routing that works without changing the URL.

Before implementing this on my own, I tried to look for something by react router. I sa

2条回答
  •  不知归路
    2020-12-18 20:46

    React Router 4 has a MemoryRouter

    import { MemoryRouter } from 'react-router'
    
    
      
    
    

    A that keeps the history of your “URL” in memory (does not read or write to the address bar). Useful in tests and non-browser environments like React Native.

    https://reacttraining.com/react-router/web/api/MemoryRouter

提交回复
热议问题