>
>                     var value = 23;
>>                     ajax('{{=URL('default', 'test')}}', ['value'], '');
>>
>
> 'value' should be the name of an input field in a form.
>

More specifically, the second argument to ajax() is a list of form input 
names -- it is not a list of Javascript variable names. If the value you 
want to pass is in a Javascript variable, then simply add it to the query 
string of the Ajax URL:

ajax('{{=URL('default', 'test')}}' + '?value=' + value, [], '');

In this case, we simply leave the second argument as an empty list, as we 
are not passing any values from form elements.

Anthony

-- 
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 web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to