1
我正在使用React構建單頁Web應用程序。對於這個應用程序,我想阻止URL的更改,也避免使用href鏈接來防止「鏈接預覽」出現在瀏覽器的左下角。使用反應路由器中的MemoryRouter導航JavaScript
爲解決我的問題的前半部分,我發現使用反應路由器中的MemoryRouter可防止在應用程序內導航時URL更改。
下面是路由器的PoC:
import App from './stuff/main/App';
import {Route, MemoryRouter} from "react-router";
import default_page from "./stuff/pages/default_page"
import another_page from "./stuff/pages/another_page"
const app = document.getElementById('root');
ReactDOM.render(
<MemoryRouter>
<App>
<Route exact path="/" component={default_page} />
<Route path="/anotherpage" component={another_page} />
</App>
</MemoryRouter>,
app
);
在應用
然後,我有這樣的代碼(工作):
...
<Link to="/">default_page</Link>
<Link to="/anotherpage">another_page</Link>
{this.props.children}
...
我無法弄清楚如何使用改變頁面的JavaScript MemoryRouter。我唯一可以找到的方法是使用鏈接標記,它使得URL顯示在屏幕的左下角。如果我可以使用另一個元素並點擊,我會是金色的。