[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-users] ajax egg
From: |
felix winkelmann |
Subject: |
Re: [Chicken-users] ajax egg |
Date: |
Tue, 20 Sep 2005 02:48:43 -0700 |
On 9/20/05, Daishi Kato <address@hidden> wrote:
> Hi,
>
> This is very nice. I was going to build a sample application,
> and found a limitation that the callback procedure is zero-argument
> and cannot receive inputs such as events and form values.
> As looking into prototype.js, there seems no (easy) way to
> get events or values as parameters of REQUEST.
> Am I missing something? Or this is just as is.
>
You can use `(current-request)' and `(argument ...)' to
access any URL-encoded arguments. Moreover,
`(http:request-body ...)' will give you access to the
request-body, in case of a POST request. Se the spiffy and
http documentation.
cheers,
felix