Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

reactjs get url query params as object

new URLSearchParams(location.search).get("your_query_param_key")
______________________________________

    if(location && location?.search?.includes("registration_token")){
      const emailValue = new URLSearchParams(location.search).get("email")
      const regTokenValue = new URLSearchParams(location.search).get("registration_token")

      setValue("email", emailValue) 
      setValue("registration_token", regTokenValue) 
      console.log(regTokenValue, emailValue);
    }
Comment

get query params react

new URLSearchParams(this.props.location.search).get("your_query_param_key")
Comment

get url query in react

const getQueryParams = () => window.location.search.replace('?', '').split('&').reduce((r,e) => (r[e.split('=')[0]] = decodeURIComponent(e.split('=')[1]), r), {});
Comment

react get url params in class component

this.props.match.params.redirectParam
Comment

PREVIOUS NEXT
Code Example
Javascript :: loading image in react js 
Javascript :: Toggle checkbox checking in jquery 
Javascript :: jquery change title of page 
Javascript :: convert string to set in js 
Javascript :: jqueyr element is hide 
Javascript :: json objects 
Javascript :: server.js 
Javascript :: javascript open pdf in new tab 
Javascript :: c# print object to json 
Javascript :: js string reverse exception 
Javascript :: javascript print 
Javascript :: unique element in array 
Javascript :: javascript collection to array 
Javascript :: js is boolean 
Javascript :: @tippyjs/react 
Javascript :: count the number of elements in an array javascript 
Javascript :: remove classname to node 
Javascript :: how to assign value to variable 
Javascript :: js script 
Javascript :: button not exist js 
Javascript :: hashing in node js 
Javascript :: react-native safeareaview 
Javascript :: how to clear state in react hooks 
Javascript :: referenceerror document is not defined node js 
Javascript :: how to find for lable in jquery 
Javascript :: javascript anagram two strings 
Javascript :: json data 
Javascript :: JavaScript read as Json 
Javascript :: group all items with same name js 
Javascript :: join method javascript 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =