Based on http://visionmedia.github.io/superagent/#get-requests I'm providing it a string so i can use the format of string[]=one&string[]=two&string[]=three, but when i check req.query, it only shows it as req.query.string[]: three.
Would it be possible to perhaps just be able to get the whole query as a string, to save you having to cater for all the possible variations? Even superagent doesn't support all the variations, thats why they have the 'supply as a string' option.
Based on http://visionmedia.github.io/superagent/#get-requests I'm providing it a string so i can use the format of
string[]=one&string[]=two&string[]=three
, but when i checkreq.query
, it only shows it asreq.query.string[]: three
.Would it be possible to perhaps just be able to get the whole query as a string, to save you having to cater for all the possible variations? Even superagent doesn't support all the variations, thats why they have the 'supply as a string' option.