I didn’t understand the parameters. Can anyone explain me in plain English? What does it mean by sending parameters to URL?
Let’s say your app url is https://myapp.bubbleapps.io and within your app you have a page named “client”
Using the send parameters to URL means that you can dynamically amend the app / page url and add some parameters’ tag + value
Examples :
https://myapp.bubbleapps.io/client?group=premium
https://myapp.bubbleapps.io/client?haircolor=gray&noise=fat
Then, in the design of your “client” page, you can get this or these url parameters and their values (“get from page URL”) to filter some lists, or display some hidden groups or any other kind of elements.
Go to Amazon.com, browse a product category and select one item to display details. Then check the Url, and you’ll see that it’s plenty of parameters Amazon use to display the product and its details + lot of parameters for tracking and analytics purposes.
Remark : when you use the “go to page” action, you can send parameters to the destination page. This is very useful if for example the type of your “client” page is the User data type (or any other data type from your database). When you run the go to page client, you can pass a specific user to the page, and in the destination page you can then prepopulate some fields using “Current page’s User’s Email” or any other field of your User data type.
Hope it’s now clearer for you.
Enjoy sending parameters to page / page URL!
I agree with this post. very informative and accurate explanation give in this post. Thanks for share it.
Thank you Christophe for the detailed explaination.