I need to make display decisions based on parameters passed on the URL (eg example.com?key=value).
Can I read those from my application? I know I can from the API but I can’t see how from the client facing form.
1 Like
Sorry!
Just found it : Modules
Extract :
In addition, this module contains some utility functions:
from anvil import *
print "Our URL hash is: " + repr(get_url_hash())
get_url_hash() gets the decoded hash (the part after the '#' character) of the URL used to open this app.
If the first character of the hash is a question mark (eg https://myapp.anvilapp.net/#?a=foo&b=bar), it will be interpreted as query-string-type parameters and returned as a dictionary (eg {'a': 'foo', 'b': 'bar'}).
1 Like
Ok, follow on question -
can I test passed parameters in the IDE or do I have to go to the published link each time?
It’s going to have to be the published link, I’m afraid
That’t fine. Thanks.