Skip to content

Instantly share code, notes, and snippets.

@ryoppy
Created July 11, 2013 13:34
Show Gist options
  • Save ryoppy/5975477 to your computer and use it in GitHub Desktop.
Save ryoppy/5975477 to your computer and use it in GitHub Desktop.
オブジェクトをアルファベット順でGETパラメータに変換 ref: http://qiita.com/ryoppy@github/items/4373bba239ae7320181f
var obj = {b: 1, a: 3, c:2};
_.map(_.keys(obj).sort(), function(key) {
return key + '=' + obj[key];
}).join('&');
// a=3&b=1&c=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment