do you want to access to the image uploaded with form for example?.
use download function in controller

<img src="{{=URL('download', args=item.image)}}"
width="200px" />


On Aug 27, 12:08 pm, Carl <[email protected]> wrote:
> I'm using Pyjamas to build my client app and Web2py to build the
> server.
>
> I'm submitting a HTML form (generated by Pyjamas) to the Web2py server
> code.
>
> Where should I look to see how I can handle the submission using
> Web2py?
>
> I already have a function defined in /app/controllers/default.py which
> gets called with the form data from the web browser (stuff like
> request.vars).
>
> The return value from my function is correctly returned to the client
> but obviously I need to access the file the user selected and store it
> in the database (I'm using GAE so storing in the database is the route
> I need to take)
>
> Any pointers?

Reply via email to