从react-router哈希片段获取查询参数

时间:2015-04-24 16:42:03

标签: javascript reactjs client-side react-router client-side-scripting

我在客户端为我的应用程序使用react和react-router。我似乎无法弄清楚如何从以下网址获取以下查询参数:

http://xmen.database/search#/?status=APPROVED&page=1&limit=20

我的路线看起来像这样(我知道路径是完全错误的):

var routes = (
<Route>
    <DefaultRoute handler={SearchDisplay}/>
    <Route name="search" path="?status=:status&page=:page&limit=:limit" handler={SearchDisplay}/>
    <Route name="xmen" path="candidate/:accountId" handler={XmenDisplay}/>
</Route>
);

我的路线工作正常,但我不知道如何格式化路径以获取我想要的参数。感谢任何帮助!

9 个答案:

答案 0 :(得分:116)

注意:复制/粘贴评论。一定要喜欢原帖!

在es6中编写并使用react 0.14.6 / react-router 2.0.0-rc5。我使用此命令在我的组件中查找查询参数:

this.props.location.query

它会在网址中创建所有可用查询参数的哈希值。

更新

对于React-Router v4,请参阅this answer。基本上,使用this.props.location.search获取查询字符串,并使用query-string包或URLSearchParams -

进行解析
const params = new URLSearchParams(paramsString); 
const tags = params.get('tags');`

答案 1 :(得分:57)

OLD(前v4):

在es6中编写并使用react 0.14.6 / react-router 2.0.0-rc5。我使用此命令在我的组件中查找查询参数:

this.props.location.query

它会在网址中创建所有可用查询参数的哈希值。

UPDATE(React Router v4 +):

React Router 4中的this.props.location.query已被删除(目前正在使用v4.1.1),有关此问题的更多信息:https://github.com/ReactTraining/react-router/issues/4410

看起来他们希望您使用自己的方法来解析查询参数,目前正在使用此库来填补空白:https://github.com/sindresorhus/query-string

答案 2 :(得分:39)

上述答案在react-router v4中不起作用。以下是我为解决问题所做的工作 -

首先安装解析所需的query-string

npm install -save query-string

路由组件中的

现在,您可以像这样访问未解析的查询字符串

this.props.location.search

您可以通过登录控制台进行交叉检查。

最后解析以访问查询参数

const queryString = require('query-string');
var parsed = queryString.parse(this.props.location.search);
console.log(parsed.param); // replace param with your own 

因此,如果查询类似于?hello=world

console.log(parsed.hello)将记录world

答案 3 :(得分:15)

更新2017.12.25

"react-router-dom": "^4.2.2"

url like

BrowserHistoryhttp://localhost:3000/demo-7/detail/2?sort=name

HashHistoryhttp://localhost:3000/demo-7/#/detail/2?sort=name

query-string依赖:

this.id = props.match.params.id;
this.searchObj = queryString.parse(props.location.search);
this.from = props.location.state.from;

console.log(this.id, this.searchObj, this.from);

结果:

2 {sort: "name"} home

"react-router": "^2.4.1"

类似于http://localhost:8080/react-router01/1?name=novaline&age=26

的网址

const queryParams = this.props.location.query;

queryParams是一个包含查询参数的对象:{name: novaline, age: 26}

答案 4 :(得分:5)

  

使用stringquery包:

import qs from "stringquery";

const obj = qs("?status=APPROVED&page=1limit=20");  
// > { limit: "10", page:"1", status:"APPROVED" }
  

使用query-string Package:

import qs from "query-string";
const obj = qs.parse(this.props.location.search);
console.log(obj.param); // { limit: "10", page:"1", status:"APPROVED" } 
  

没有包裹:

const convertToObject = (url) => {
  const arr = url.slice(1).split(/&|=/); // remove the "?", "&" and "="
  let params = {};

  for(let i = 0; i < arr.length; i += 2){
    const key = arr[i], value = arr[i + 1];
    params[key] = value ; // build the object = { limit: "10", page:"1", status:"APPROVED" }
  }
  return params;
};


const uri = this.props.location.search; // "?status=APPROVED&page=1&limit=20"

const obj = convertToObject(uri);

console.log(obj); // { limit: "10", page:"1", status:"APPROVED" }


// obj.status
// obj.page
// obj.limit

希望有所帮助:)

快乐的编码!

答案 5 :(得分:4)

在阅读完其他答案后(首先是@ duncan-finney,然后是@Marrs)我开始寻找更改日志来解释惯用的react-router 2.x解决这个问题的方法。组件中的documentation on using location(查询所需)实际上与实际代码相矛盾。因此,如果你听从他们的建议,就会发出如此强烈的愤怒警告:

Warning: [react-router] `context.location` is deprecated, please use a route component's `props.location` instead.

事实证明,您不能使用名为location的上下文属性来使用位置类型。但是您可以使用名为loc的上下文属性来使用位置类型。所以解决方案是对其来源的一个小修改如下:

const RouteComponent = React.createClass({
    childContextTypes: {
        loc: PropTypes.location
    },

    getChildContext() {
        return { location: this.props.location }
    }
});

const ChildComponent = React.createClass({
    contextTypes: {
        loc: PropTypes.location
    },
    render() {
        console.log(this.context.loc);
        return(<div>this.context.loc.query</div>);
    }
});

您也可以只传递您孩子所需的位置对象的部分获得相同的好处。它没有更改警告以更改为对象类型。希望有所帮助。

答案 6 :(得分:2)

"react-router-dom": "^5.0.0",

您无需仅在组件中添加具有以下URL地址的其他模块:

http://localhost:3000/#/?authority'

您可以尝试以下简单代码:

    const search =this.props.location.search;
    const params = new URLSearchParams(search);
    const authority = params.get('authority'); //

答案 7 :(得分:0)

使用query-string模块时,在创建优化的生产版本时可能会出现以下错误。

  

无法缩小此文件中的代码:   ./node_modules/query-string/index.js:8

为了克服这个问题,请使用名为stringquery的替代模块,该模块在运行构建时可以很好地执行相同的过程。

import querySearch from "stringquery";

var query = querySearch(this.props.location.search);

答案 8 :(得分:0)

简单的js解决方案:

queryStringParse = function(string) {
    let parsed = {}
    if(string != '') {
        string = string.substring(string.indexOf('?')+1)
        let p1 = string.split('&')
        p1.map(function(value) {
            let params = value.split('=')
            parsed[params[0]] = params[1]
        });
    }
    return parsed
}

您可以使用以下任何一种方式调用它:

var params = this.queryStringParse(this.props.location.search);

希望这会有所帮助。