var json = {
'test':'hello',
'testName':'world',
'testVal':''
}
var param = Object.keys(json).map(function (key) {return encodeURIComponent(key) + "=" + encodeURIComponent(json[key]); }).join("&");
var json = {
'test':'hello',
'testName':'world',
'testVal':''
}
var param = Object.keys(json).map(function (key) {return encodeURIComponent(key) + "=" + encodeURIComponent(json[key]); }).join("&");