[Suggestion] Query & Fragment URL access
Posted: 02 Jul 2014, 09:26
Very hello,
It would be very cool to have access to the Query (as Text[Text] for instance) and Fragment (as Text) parts of the current URL !
Eg.
A excelent implementation, for reference, can be found in the Symfony HTTP Foundation component in PHP:
http://symfony.com/doc/current/componen ... ml#request

It would be very cool to have access to the Query (as Text[Text] for instance) and Fragment (as Text) parts of the current URL !
Eg.
Code: Select all
// http://example.com?foo=bar&wow=such#very
log(Request.Query['foo']); // bar
log(Request.Query['wow']); // such
log(Request.Fragment); // very
http://symfony.com/doc/current/componen ... ml#request
