vibe.d has req.queryString, but no convenient wrapper to access it as an AA.
http://localhost/hello?name=abc&id=123 I've got this far.auto arr = req.queryString.splitter('&').map!(a => a.splitter('='));
Thanks
Arun Chandrasekaran via Digitalmars-d-learn Tue, 11 Dec 2018 00:25:49 -0800
vibe.d has req.queryString, but no convenient wrapper to access it as an AA.
http://localhost/hello?name=abc&id=123 I've got this far.auto arr = req.queryString.splitter('&').map!(a => a.splitter('='));
Thanks