如何将现有应用程序的仪表板与 ReactJS 集成?
How to integrate dashboard on exsiting app with ReactJS?
我有一个仪表板 Reactify,我想使用 create-react-app 将它集成到我的 reactjs 应用程序中。
我想使用路由 /admin
.
从我的应用程序重定向到仪表板
我该如何解决?
首先,我希望您使用 'react-router-dom' 包进行路由。如果是,您可以导入您的仪表板组件并在 Router 标记内使用它来路由到仪表板。
例如:
import Dashboard from './components/Dashboard.js'; //give proper path to dashboard component
//then inside render in your app
render() {
return (
<Router>
<Route path="/admin" component={Dashboard} />
</Router>"
);
}
要了解基础知识,请查看文档以了解
react-router-dom
希望对您有所帮助!
我有一个仪表板 Reactify,我想使用 create-react-app 将它集成到我的 reactjs 应用程序中。
我想使用路由 /admin
.
我该如何解决?
首先,我希望您使用 'react-router-dom' 包进行路由。如果是,您可以导入您的仪表板组件并在 Router 标记内使用它来路由到仪表板。
例如:
import Dashboard from './components/Dashboard.js'; //give proper path to dashboard component
//then inside render in your app
render() {
return (
<Router>
<Route path="/admin" component={Dashboard} />
</Router>"
);
}
要了解基础知识,请查看文档以了解 react-router-dom
希望对您有所帮助!