首頁 > 軟體

解決React報錯useNavigate() may be used only in context of Router

2022-12-03 14:00:44

總覽

當我們嘗試在react router的Router上下文外部使用useNavigate 勾點時,會產生"useNavigate() may be used only in the context of a Router component"警告。為了解決該問題,只在Router上下文中使用useNavigate 勾點。

下面是一個在index.js檔案中將React應用包裹到Router中的例子。

// index.js
import {createRoot} from 'react-dom/client';
import App from './App';
import {BrowserRouter as Router} from 'react-router-dom';
const rootElement = document.getElementById('root');
const root = createRoot(rootElement);
// 

IT145.com E-mail:sddin#qq.com