Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,880 questions

51,806 answers

573 users

How to encode object to URL query string in JavaScript

3 Answers

0 votes
let obj = {
  id: 383912,
  name: "Albus Dumbledore",
  academicrank: "Professor"
};

querystring = function (obj) {
  let arr = [];
  for (let p in obj)
    if (obj.hasOwnProperty(p)) {
      arr.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
    }
  return arr.join("&");
}

console.log(querystring(obj));


  
    
    
/*
run:

"id=383912&name=Albus%20Dumbledore&academicrank=Professor"
    
*/

 



answered Jan 29, 2021 by avibootz
0 votes
let obj = {
  id: 383912,
  name: "Albus Dumbledore",
  academicrank: "Professor"
};

const urlsearchparams = new URLSearchParams();

Object.keys(obj).forEach(key => urlsearchparams.append(key, obj[key]));

const querystring = urlsearchparams.toString();

console.log(querystring);


  
    
    
/*
run:

"id=383912&name=Albus+Dumbledore&academicrank=Professor"
    
*/

  

 



answered Jan 29, 2021 by avibootz
0 votes
let obj = {
  id: 383912,
  name: "Albus Dumbledore",
  academicrank: "Professor"
};

const querystring = new URLSearchParams(obj).toString();

console.log(querystring);


  
    
    
/*
run:

"id=383912&name=Albus+Dumbledore&academicrank=Professor"
    
*/

  

 



answered Jan 29, 2021 by avibootz

Related questions

2 answers 152 views
2 answers 157 views
157 views asked Jan 29, 2021 by avibootz
1 answer 194 views
1 answer 166 views
1 answer 108 views
3 answers 246 views
...