缺少此行:path
<Route name="ideas" handler={CreateIdeaView} />
应该是:
<Route name="ideas" path="/:testvalue" handler={CreateIdeaView} />
鉴于以下情况(过时的 v1)::Link
<Link to="ideas" params={{ testvalue: "hello" }}>Create Idea</Link>
截至 v4/v5 的最新数据:
const backUrl = '/some/other/value'
// this.props.testvalue === "hello"
// Using query
<Link to={{pathname: `/${this.props.testvalue}`, query: {backUrl}}} />
// Using search
<Link to={{pathname: `/${this.props.testvalue}`, search: `?backUrl=${backUrl}`} />
<Link to={`/${this.props.testvalue}?backUrl=${backUrl}`} />
在 withRouter(CreateIdeaView)
组件 render()
中,高阶组件的过时用法:withRouter
console.log(this.props.match.params.testvalue, this.props.location.query.backurl)
// output
hello /some/other/value
而在功能组件中使用和钩子:useParams
useLocation
const CreatedIdeaView = () => {
const { testvalue } = useParams();
const { query, search } = useLocation();
console.log(testvalue, query.backUrl, new URLSearchParams(search).get('backUrl'))
return <span>{testvalue} {backurl}</span>
}
从您在文档中发布的链接到页面底部:
给定一条像这样的路线<Route name="user" path="/users/:userId"/>
使用一些存根查询示例更新了代码示例:
// import React, {Component, Props, ReactDOM} from 'react';
// import {Route, Switch} from 'react-router'; etc etc
// this snippet has it all attached to window since its in browser
const {
BrowserRouter,
Switch,
Route,
Link,
NavLink
} = ReactRouterDOM;
class World extends React.Component {
constructor(props) {
super(props);
console.dir(props);
this.state = {
fromIdeas: props.match.params.WORLD || 'unknown'
}
}
render() {
const { match, location} = this.props;
return (
<React.Fragment>
<h2>{this.state.fromIdeas}</h2>
<span>thing:
{location.query
&& location.query.thing}
</span><br/>
<span>another1:
{location.query
&& location.query.another1
|| 'none for 2 or 3'}
</span>
</React.Fragment>
);
}
}
class Ideas extends React.Component {
constructor(props) {
super(props);
console.dir(props);
this.state = {
fromAppItem: props.location.item,
fromAppId: props.location.id,
nextPage: 'world1',
showWorld2: false
}
}
render() {
return (
<React.Fragment>
<li>item: {this.state.fromAppItem.okay}</li>
<li>id: {this.state.fromAppId}</li>
<li>
<Link
to={{
pathname: `/hello/${this.state.nextPage}`,
query:{thing: 'asdf', another1: 'stuff'}
}}>
Home 1
</Link>
</li>
<li>
<button
onClick={() => this.setState({
nextPage: 'world2',
showWorld2: true})}>
switch 2
</button>
</li>
{this.state.showWorld2
&&
<li>
<Link
to={{
pathname: `/hello/${this.state.nextPage}`,
query:{thing: 'fdsa'}}} >
Home 2
</Link>
</li>
}
<NavLink to="/hello">Home 3</NavLink>
</React.Fragment>
);
}
}
class App extends React.Component {
render() {
return (
<React.Fragment>
<Link to={{
pathname:'/ideas/:id',
id: 222,
item: {
okay: 123
}}}>Ideas</Link>
<Switch>
<Route exact path='/ideas/:id/' component={Ideas}/>
<Route path='/hello/:WORLD?/:thing?' component={World}/>
</Switch>
</React.Fragment>
);
}
}
ReactDOM.render((
<BrowserRouter>
<App />
</BrowserRouter>
), document.getElementById('ideas'));
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.6.3/umd/react.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.6.3/umd/react-dom.production.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-router-dom/4.3.1/react-router-dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-router/4.3.1/react-router.min.js"></script>
<div id="ideas"></div>
#updates:
请参见: https://github.com/ReactTraining/react-router/blob/0c6d51cd6639aff8a84b11d89e27887b3558ed8a/upgrade-guides/v2.0.0.md#link-to-onenter-and-isactive-use-location-descriptors
从 1.x 升级到 2.x 的升级指南中:
<Link to>
、onEnter 和 isActive Use 位置描述符
<Link to>
现在,除了字符串之外,还可以采用位置描述符。查询和状态属性已弃用。
版本1.0.x
<Link to="/foo" query={{ the: 'query' }}/>
版本2.0.0
<Link to={{ pathname: '/foo', query: { the: 'query' } }}/>
在 2.x 中仍然有效
<Link to="/foo"/>
同样,从 onEnter 挂钩重定向现在也使用位置描述符。
版本1.0.x
(nextState, replaceState) => replaceState(null, '/foo')
(nextState, replaceState) => replaceState(null, '/foo', { the: 'query' })
版本2.0.0
(nextState, replace) => replace('/foo')
(nextState, replace) => replace({ pathname: '/foo', query: { the: 'query' } })
对于类似自定义链路的组件,这同样适用于 router.isActive,以前称为 history.isActive。
版本1.0.x
history.isActive(pathname, query, indexOnly)
版本2.0.0
router.isActive({ pathname, query }, indexOnly)
v3 到 v4 的#updates:
接口基本上仍然与v2相同,最好看看react-router CHANGES.md,因为这是更新的地方。
面向后代的“旧版迁移文档”