gpt4 book ai didi

reactjs - 当我在 create-react-app 中输入 npm start 时如何指定自定义 URL

转载 作者:行者123 更新时间:2023-12-04 01:40:20 25 4
gpt4 key购买 nike

当我在 create-react-app 中使用 npm start 加载 react 时,我想加载自定义 URL。默认情况下,它将打开 localhost:somePort/。但我需要 locahost:somePort/somestuff

最佳答案

如何从你的 app.js 重定向到你想要的路径?像这样:

import { BrowserRouter, Route, Redirect } from 'react-router-dom'

<BrowserRouter>
<Switch>
<Route
path='/'
component={SomeComponent}
/>
<Redirect to='/somestuff'/>
</Switch>
</BrowserRouter>

关于reactjs - 当我在 create-react-app 中输入 npm start 时如何指定自定义 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57744492/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com