Have you read this section: http://web2py.com/books/default/chapter/29/04/the-core#request
request.get_vars includes all variables in the URL query string. For example, for the URL /myapp/default/myfunc?var1=a&var2=b, request.get_vars.var1 will be equal to "a" and request.get_vars.var2 will be "b". Similarly, request.post_vars includes all variables submitted via a POST request (e.g., when a form is submitted). Finally, request.vars is simply the combination of request.get_vars and request.post_vars (if get_vars and post_vars happen to include a variable of the same name, its value in request.vars will be a list containing both values). Anthony On Saturday, November 16, 2013 1:46:24 AM UTC-5, afro wrote: > > I have a question, about request.vars what does it do, what it is? > I need to understand more the way how the controller works, and where can > I read more about ajax when I want jQuery.ajax to transfer dynamic > content(test, html) to a script running the current page without reloading > it. > -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

