[Seaside] Fetching GET parameters from a Seaside component.

Ramon Leon ramon.leon at allresnet.com
Mon Oct 25 20:52:55 UTC 2010


On 10/25/2010 1:39 PM, Johan Brichau wrote:
> The GET params are in the request. Try this:
>
> self requestContext request at: #time

You should use strings rather than symbols for accessing those.

self requestContext request at: 'time'

They're actually keyed by strings in the request.  Strings and sybmols 
are not equivalent on all platforms, particularly Gemstone.  Access by 
string will be portable.  That's not a bug you want to be bitten by 
because it's not at all obvious.

-- 
Ramon Leon
http://onsmalltalk.com


More information about the seaside mailing list