プログラムでreact-routerのクエリパラメータを更新するにはどうすればよいですか?


117

を使用せずにreact-routerでクエリパラメータを更新する方法を見つけることができないようです<Link/>hashHistory.push(url)クエリパラメータを登録していないようです。また、クエリオブジェクトなどを2番目の引数として渡すことができないようです。

を使用せずにURL をreact-router から/shop/Clothes/dressesにどのように変更しますか?/shop/Clothes/dresses?color=blue<Link>

そして、onChange関数はクエリの変更をリッスンする唯一の方法ですか?クエリの変更が自動的に検出され、パラメーターの変更の方法に反応しないのはなぜですか?


回答:


143

pushメソッド内で、hashHistoryクエリパラメータを指定できます。例えば、

history.push({
  pathname: '/dresses',
  search: '?color=blue'
})

または

history.push('/dresses?color=blue')

このリポジトリを使用して追加の例を確認できます。history


2
驚くばかり!文字列の代わりにクエリオブジェクト{色:青、サイズ:10}を渡す方法はありますか?
claireablani 2016年

1
@claireablani現在、私はそれがサポートされているとは思いません
ジョンF.

1
@claireablaniあなたはこれを試すことができますrouter.push({ pathname: '/path', state: { color: 'blue', size: 10 }, });
MichelH 2017年

4
明確にするために、これは反応ルーターv4では機能しなくなりました。それについては、@kristupas-repečkaの回答を参照してください
dkniffin

13
私たちが住んでいる不安定な時代
KristupasRepečka18年

39

react-router v4、redux-thunk、react-router-redux(5.0.0-alpha.6)パッケージの使用例。

ユーザーが検索機能を使用するときに、同じクエリのURLリンクを同僚に送信できるようにしたいと考えています。

import { push } from 'react-router-redux';
import qs from 'query-string';

export const search = () => (dispatch) => {
    const query = { firstName: 'John', lastName: 'Doe' };

    //API call to retrieve records
    //...

    const searchString = qs.stringify(query);

    dispatch(push({
        search: searchString
    }))
}

8
react-router-redux廃止予定
vsync 2018年

これは、<Redirect>タグをレンダリングして、ドキュメントページ
TKAB '25年

2
コンポーネントをwithReducerHOCでラップするだけで、history小道具が得られます。そして、あなたは走ることができますhistory.push({ search: querystring }
sasklacz

の代わりにreact-router-reduxconnected-react-router廃止されていないものを使用できます。
セーレンBoisen

29

ジョンの答えは正しいです。paramsを処理しているときは、URLSearchParamsインターフェイスも必要です。

this.props.history.push({
    pathname: '/client',
    search: "?" + new URLSearchParams({clientId: clientId}).toString()
})

また、コンポーネントをwithRouterHOCでラップする必要がある場合もあります。export default withRouter(YourComponent);


1
withRouterはデコレータではなくHOCです
Luis Paulo

4
    for react-router v4.3, 
 const addQuery = (key, value) => {
  let pathname = props.location.pathname; 
 // returns path: '/app/books'
  let searchParams = new URLSearchParams(props.location.search); 
 // returns the existing query string: '?type=fiction&author=fahid'
  searchParams.set(key, value);
  this.props.history.push({
           pathname: pathname,
           search: searchParams.toString()
     });
 };

  const removeQuery = (key) => {
  let pathname = props.location.pathname; 
 // returns path: '/app/books'
  let searchParams = new URLSearchParams(props.location.search); 
 // returns the existing query string: '?type=fiction&author=fahid'
  searchParams.delete(key);
  this.props.history.push({
           pathname: pathname,
           search: searchParams.toString()
     });
 };


 ```

 ```
 function SomeComponent({ location }) {
   return <div>
     <button onClick={ () => addQuery('book', 'react')}>search react books</button>
     <button onClick={ () => removeQuery('book')}>remove search</button>
   </div>;
 }
 ```


 //  To know more on URLSearchParams from 
[Mozilla:][1]

 var paramsString = "q=URLUtils.searchParams&topic=api";
 var searchParams = new URLSearchParams(paramsString);

 //Iterate the search parameters.
 for (let p of searchParams) {
   console.log(p);
 }

 searchParams.has("topic") === true; // true
 searchParams.get("topic") === "api"; // true
 searchParams.getAll("topic"); // ["api"]
 searchParams.get("foo") === null; // true
 searchParams.append("topic", "webdev");
 searchParams.toString(); // "q=URLUtils.searchParams&topic=api&topic=webdev"
 searchParams.set("topic", "More webdev");
 searchParams.toString(); // "q=URLUtils.searchParams&topic=More+webdev"
 searchParams.delete("topic");
 searchParams.toString(); // "q=URLUtils.searchParams"


[1]: https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams

3

GitHubのDimitriDushkinから:

import { browserHistory } from 'react-router';

/**
 * @param {Object} query
 */
export const addQuery = (query) => {
  const location = Object.assign({}, browserHistory.getCurrentLocation());

  Object.assign(location.query, query);
  // or simple replace location.query if you want to completely change params

  browserHistory.push(location);
};

/**
 * @param {...String} queryNames
 */
export const removeQuery = (...queryNames) => {
  const location = Object.assign({}, browserHistory.getCurrentLocation());
  queryNames.forEach(q => delete location.query[q]);
  browserHistory.push(location);
};

または

import { withRouter } from 'react-router';
import { addQuery, removeQuery } from '../../utils/utils-router';

function SomeComponent({ location }) {
  return <div style={{ backgroundColor: location.query.paintRed ? '#f00' : '#fff' }}>
    <button onClick={ () => addQuery({ paintRed: 1 })}>Paint red</button>
    <button onClick={ () => removeQuery('paintRed')}>Paint white</button>
  </div>;
}

export default withRouter(SomeComponent);

2

クエリ文字列を簡単に解析するモジュールが必要な場合は、クエリ文字列モジュールの使用をお勧めします。

http:// localhost:3000?token = xxx-xxx-xxx

componentWillMount() {
    var query = queryString.parse(this.props.location.search);
    if (query.token) {
        window.localStorage.setItem("jwt", query.token);
        store.dispatch(push("/"));
    }
}

ここでは、Google-Passport認証が成功した後、Node.jsサーバーからクライアントにリダイレクトしています。これは、クエリパラメーターとしてトークンを使用してリダイレクトしています。

私はそれをクエリ文字列モジュールで解析して保存し、URLのクエリパラメータをreact-router-reduxからのpushで更新しています。


1

以下のES6スタイルの関数を使用することをお勧めします。

getQueryStringParams = query => {
    return query
        ? (/^[?#]/.test(query) ? query.slice(1) : query)
            .split('&')
            .reduce((params, param) => {
                    let [key, value] = param.split('=');
                    params[key] = value ? decodeURIComponent(value.replace(/\+/g, ' ')) : '';
                    return params;
                }, {}
            )
        : {}
};

1

このように書くこともできます

this.props.history.push(`${window.location.pathname}&page=${pageNumber}`)
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.