How can I convert an object like that
{
param1: "value1",
param2: "value2",
param3: ["value31" "value32"]
}
into a querystring like that:
param1=value1¶m2=value2¶m3[]=value31¶m3[]=value32
to be passed along an http.get reuquest?