URL Parameters
Use placeholders for dynamic parameters in your form actions, links, and datasource URLs.
What are URL Parameters?
URL Parameters allow you to accomplish the common use case of dynamic parameters in URLs, usually based on routes or user sessions. Consider the URL below.
In order to use this URL and personalize it at runtime, Mason accepts tokenized parameters prefixed by :
- so the URL above would be tokenized as:
Any part of a URL string may be tokenized, and the token will be matched from :
until the first non-alphanumeric character is encountered. You may use URL Parameters in form action attributes, link href attributes, and datasource URL attributes.
Providing URL Parameters
Provide a urlParams
prop to your feature at runtime and keys will be substituted in all occurrences. For the URL above, you would provide the urlParams
as follows
Last updated