Answers for "use query params react"

7

get query params react

new URLSearchParams(this.props.location.search).get("your_query_param_key")
Posted by: Guest on August-31-2020
-1

use query params react

const query = new URLSearchParams(this.props.location.search);

const token = query.get('token')
console.log(token)//123
Posted by: Guest on March-17-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language