react/Ant Design路由的参数的使用以及获取参数(this.props.params)
Song •
4434 次浏览 •
0个评论 •
2018年07月28日
React中实现
Ant Design
是基于react
的框架。所以我们基于react
传递参数:
import List from './component/list';
<Route path="list/:id" component={List} />
注意
path: 属性中的:id
就是该路由的参数(param
)。
在List
组件中,可以直接通过(this.props.params).id
来访问实际的参数值(这里的id key
就和定义路径的:id
相对应),React Router
将路由的数据都通过props
传递给了页面组件。
import React from 'react';
class List extends React.Component {
render () {
return (
<div>
<h3>This is List page.</h3>
<p>The list page id is
<b style={{color: 'red'}}>{this.props.params.id}</b>
</p>
</div>
);
}
};
Ant Design中实现
但是在Ant Design
中,this.props.params
参数是不存在的,可以使用this.props.match.params.id
来获取,需要添加match
参数。
Ant Design获取Url参数
比如我们通过a?name=1&b=3
,通过substr
截取长度即可获得参数!
const query = this.props.location.search;
const parrmas = query.split('&');
const name = parrmas[0].substr(5);
const status = parrmas[1].substr(2);
用户评论
当前暂无评价,快来发表您的观点吧...
更多相关好文
当前暂无更多相关好文推荐...
-
微信公众号文章/菜单添加小程序时路径如何获取? 2021-12-22
-
如何轻松获取微信小程序路径path? 2021-12-22
-
cannot import name 'CUDA_HOME' from 'mmcv.utils' 2021-12-05
-
vgg的loss一轮达到ln(1/n)阈值,如何解决 2021-11-21
-
如何下载使用utils库 2021-10-27
热门文章
-
微信公众号文章/菜单添加小程序时路径如何获取? 2021-12-22
-
如何轻松获取微信小程序路径path? 2021-12-22
-
python/MySQL分页查询方法与性能优化 2021-06-23
-
mitmproxy & python 忽略所有的https/ssl请求 2021-04-19
-
如何使用邮件/邮箱推广微信公众号/小程序? 2021-01-28
栏目最新文章
公告提示
- pytorch中文文档
- pytorch官方文档
提交评论