Come aggiorni a livello di codice i parametri delle query in React-Router?


117

Non riesco a trovare come aggiornare i parametri di query con React-Router senza utilizzare <Link/>. hashHistory.push(url)non sembra registrare i parametri della query e non sembra che tu possa passare un oggetto query o altro come secondo argomento.

Come si modifica l'URL da /shop/Clothes/dressesa /shop/Clothes/dresses?color=bluein React-Router senza utilizzare <Link>?

E una onChangefunzione è davvero l'unico modo per ascoltare le modifiche alle query? Perché le modifiche alle query non vengono rilevate automaticamente e non vengono reagite nel modo in cui vengono apportate le modifiche ai parametri?


dovresti usare il singleton della storia come indicato in questa domanda
Joseph Combs

Risposte:


143

All'interno del pushmetodo di hashHistoryè possibile specificare i parametri della query. Per esempio,

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

o

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

Puoi controllare questo repository per ulteriori esempi sull'utilizzo dihistory


2
eccezionale! Esiste comunque il passaggio di un oggetto query {color: blue, size: 10} invece di una stringa?
claireablani

1
@claireablani Attualmente, non credo che sia supportato
John F.

1
@claireablani potresti provare questorouter.push({ pathname: '/path', state: { color: 'blue', size: 10 }, });
MichelH

4
Solo per chiarimenti, questo non funziona più in React Router v4. Per questo, vedi la risposta di @ kristupas-repečka
dkniffin

14
tempi instabili in cui viviamo.
Kristupas Repečka

39

Esempio di utilizzo del pacchetto react-router v4, redux-thunk e react-router-redux (5.0.0-alpha.6).

Quando l'utente utilizza la funzione di ricerca, desidero che sia in grado di inviare il collegamento all'URL per la stessa query a un collega.

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è deprecato
vsync

Penso che questo debba ora essere fatto rendendo il <Redirect>tag, link alla pagina dei documenti
TKAB

2
Puoi semplicemente avvolgere il tuo componente in withReducerHOC che ti darà il historysostegno. E poi puoi correre history.push({ search: querystring }.
sasklacz

Invece di react-router-redux, puoi usare connected-react-routerche non è deprecato.
Søren Boisen

29

La risposta di John è corretta. Quando ho a che fare con i parametri ho anche bisogno URLSearchParamsdell'interfaccia:

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

Potrebbe anche essere necessario avvolgere il componente con un withRouterHOC, ad es. export default withRouter(YourComponent);.


1
withRouterè un HOC, non un decoratore
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

Da DimitriDushkin su GitHub :

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);
};

o

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

L'uso del modulo stringa di query è quello consigliato quando è necessario un modulo per analizzare facilmente la stringa di query.

http: // localhost: 3000 di 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("/"));
    }
}

Qui, sto reindirizzando di nuovo al mio client dal server Node.js dopo l'autenticazione di Google-Passport riuscita, che sta reindirizzando con token come parametro query.

Lo sto analizzando con il modulo stringa di query, salvandolo e aggiornando i parametri della query nell'URL con push da React-Router-Redux .


1

Preferisco che tu usi la funzione di seguito che è lo ES6stile:

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

Può anche essere scritto in questo modo

this.props.history.push(`${window.location.pathname}&page=${pageNumber}`)
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.