Answers for "how to history.push the same url but different parameter"

5

passing data in react router history,push

this.props.history.push({
  pathname: '/template',
  search: '?query=abc',
  state: { detail: response.data }
})
Posted by: Guest on February-05-2021
1

this.props.history.location.push

props.history.push({  pathname: '/register', state: data_you_need_to_pass});
Posted by: Guest on November-18-2020

Code answers related to "how to history.push the same url but different parameter"

Code answers related to "Javascript"

Browse Popular Code Answers by Language