jsonからGetParameterのURLを生成

var param = {"age": 24, "id": 12345, "tag": "aho"}

みたいなJsonオブジェクトから

age=24&id=12345&tag=aho

的な感じの文字列作りたくないですか?

あるでしょう。あるでしょう?あるよね。。。

function urlToString(param){
  var res = []
  for(var key in param){
    res[res.length] = encodeURIComponent(key) + "=" + encodeURIComponent(param[key])
  }
  return res.join("&")
}

でいけますよ。。。

ちなみに2段階のjsonには対応してないので悪しからず