Skip to content

queryStringHandler fromObject

Mike Byrne edited this page Mar 7, 2018 · 2 revisions

queryStringHandler.fromObject

description

Takes an object and turns it into a query string

requires

  • nothing

parameters

  • object - required - object to turn into a query string

returns

  • query string as a string

example usage:

var qs = queryStringHandler.fromObject({
  param1: 'param1value',
  param2: 'param2value'
});
// returns: ?param1=param1value&param2=param2value

Clone this wiki locally