Skip to content

Instantly share code, notes, and snippets.

@Houserqu
Created December 7, 2017 12:31
Show Gist options
  • Save Houserqu/1efaf364532aacbe06da7b684d7c634f to your computer and use it in GitHub Desktop.
Save Houserqu/1efaf364532aacbe06da7b684d7c634f to your computer and use it in GitHub Desktop.
json to url query
url = Object.keys(data).map(function(k) {
return encodeURIComponent(k) + '=' + encodeURIComponent(data[k])
}).join('&')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment