JavaScript对象(JSON)到URL字符串格式

时间:2013-11-11 15:31:59

标签: javascript json xmlhttprequest native

我有一个类似

的JSON对象
{
    "version" : "22",
    "who: : "234234234234"
}

我需要一个准备好作为原始http正文请求发送的字符串。

所以我需要它看起来像

version=22&who=234324324324

但是,对于无数的参数,它需要工作,此刻我已经

app.jsonToRaw = function(object) {
    var str = "";
    for (var index in object) str = str + index + "=" + object[index] + "&";
    return str.substring(0, str.length - 1);
};

但是在本机js中必须有更好的方法吗?

由于

1 个答案:

答案 0 :(得分:42)

2018更新

var obj = {
    "version" : "22",
    "who" : "234234234234"
};

const queryString = Object.entries(obj).map(([key, value]) => {
    return `${encodeURIComponent(key)}=${encodeURIComponent(value)}`;
}).join('&');

console.log(queryString); // "version=22&who=234234234234"

原帖

你的解决方案非常好。看起来更好的可能是:

var obj = {
    "version" : "22",
    "who" : "234234234234"
};

var str = Object.keys(obj).map(function(key){ 
  return encodeURIComponent(key) + '=' + encodeURIComponent(obj[key]); 
}).join('&');

console.log(str); //"version=22&who=234234234234"

+1 {Poointy for encodeURIComponent