react获取url查询参数
继承自React.Component的
this.props.location.query对象下
有当前url的各种查询参数。
简单的例子:在控制台打印这个对象
import React from 'react';class Hello extends React.Component{
constructor(props) {
super(props);
console.log(this.props.location.query);
}
render() {
return(<div>我是hello页面</div>);
}
}
module.exports = Hello;
以上是 react获取url查询参数 的全部内容, 来源链接: utcz.com/z/381321.html