| Author |
FrontMan - Getting GET Parameters
|
Michael Lynch
Greenhorn
Joined: Dec 21, 2011
Posts: 5
|
|
I'm trying to simply retrieve a GET parameter in a URL, and I can't seem to figure out how it's done using FrontMan.
I've got a link on a page to http://localhost:8888/command/ViewPool?id=98f97c30-398b-11e1-b86c-0800200c9a66
In an attempt to retrieve the value of id, I make the following call:
var is always null, regardless of which ScopedContext enum value I use, so I don't think that's the problem. I would assume that GET request parameters should be in the REQUEST ScopedContext. In any case, what am I doing wrong? Why can't I get the value?
Thanks!
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56157
|
|
|
Parameters are not scoped variables. You get parameters from the request instance with getParameter() just like anywhere else. Remember, the whole idea of FrontMan is to help you do the tough stuff more easily -- not to replace the standard ways of doing things with just another proprietary way of doing it.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: FrontMan - Getting GET Parameters
|
|
|