constquery_parameters = { name:'value', 'another-name':'another-value', // Empty values are allowed name3:'', // Names without values are also allowed name4:null, }
The resulting query string of the example will be name=value&another-name=another-value&name3=&name4.
A map of query parameter names to values.
Example:
The resulting query string of the example will be
name=value&another-name=another-value&name3=&name4
.