One of the most used method is setting parameters in your URL, for example by creating detail and edit pages with a specific document you want to edit: /user/:guid/:action
. The variables in the URL are set with the colon (:)
, and the name of the parameter directly after it. To get the value of this parameters you use drag a get (custom) fields
from the Params
pin of the UI page
. When you don't want to make a required paramate you can add a question-mark at the end of the parameter like the example on the right.
/tutorial/query?name=RUAL
. For multiple variable you can add &
in between the variables: /tutorial/query?name=RUAL&country=netherlands
( and )
. In between every optional path needs to start with an Vertical-line: |
followed with the pathname. The image on the right has an example.