The browser accesses your website through URL. Blazor Server serves the destination page based on the requested URL. Sometimes, the users want more, like they can share a URL with pre-filled information. In that case, routing and parameterized route will help you. This tutorial includes:
You can download the example code used in this topic on GitHub.
Routing will make your website available to the users. Routing is the process of specify a component to serve when a specific URL is requested.
Parameterized route is the process of setting and getting parameters on a route to allow the users to share the URL with pre-filled information. There are 2 types of parameters:
A URL is a route, a route must be specified in one and only one component. Whereas, a component can have multiple routes. The following image will illustrate the relationship between a route and a component.
An independent component is a component with at least one route. To specify a route for a component, you need to use the @page
directive at the directive section of the component. For example:
@page "/single-route"
A route must begin with an forward splash (/).
A route must be unique throughout the website. However, a route can be nested in another route. A nested route is a route that has the same beginning path with the parent. Consider the following example:
/member /member/dashboard /member/profile
In the example, /member is the parent route with 2 children: /member/dashboard and member/profile.
A route can contain parameter(s). All the parameters in the route will be mapped to a component property. The following list is the accepted types of a component property.
short
andSystem.Int16
are not supported.
Path parameters is the technique that takes parameters as a part of route path. Each parameter separated by a forward splash (/) and wrapped inside a pair of brackets ({}). For example, the route /member/{id:guid} has id as a parameter.
Route parameter type is the type specific for one parameter. The following image illustrates the route and component parameter relationship:
The following table shows the matching type between route parameter and component parameter.
Route parameter type | Example data | Component parameter type |
---|---|---|
bool | true , FALSE |
bool |
datetime | 2021-12-31 , 2021-12-31 8:40pm |
DateTime |
decimal | 99.99 , -1,00 |
decimal |
float | 1.234 , -1,001.018 |
float |
guid | CD2C1638-1638-72D5-1638-DEADBEEF1638 , {CD2C1638-1638-72D5-1638-DEADBEEF1638} |
Guid |
int | 123456789 , -123456789 |
int, Int32 |
long | 123456789 , -123456789 |
long, Int64 |
double | 1.234 , -1,001.018 |
double, Double |
BlazorSchool, blazorschool.com | string, String |
Thefloat
anddouble
data cannot contain the e symbol. For example: -1,001.01e8 is not valid.
To access a route parameter, you need to declare a component property in the code section with getter, setter and has a [Parameter]
attribute. For example:
@page "/path-parameters-overloading/{Param1}" <h3>Overloading path with param: @Param1</h3> @code { [Parameter] public string Param1 { get; set; } = ""; }
Path parameter can have one and only one optional parameter. The optional parameter must be placed as the last parameter in the route. The route parameter type and component parameter type must have a question mark (?) symbol at the end. For example:
@page "/optional-path-parameter/{Param1:bool?}" <h3>OptionalPathParameter</h3> <div>Param1 has value? - @Param1.HasValue</div> @code { [Parameter] public bool? Param1 { get; set; } }
When your parameterized route has the same path with your nested route, it is called route overloading. Assuming you have 2 routes: /path-parameters-overloading/{Param1} and /path-parameters-overloading/page-without-param. Then a user requests /path-parameters-overloading/page-without-param, there are 2 possible route matches: /path-parameters-overloading/{Param1} and /path-parameters-overloading/page-without-param. In this case, Blazor Server will prioritize the route (/path-parameters-overloading/page-without-param) over the path parameter route (/path-parameters-overloading/{Param1}).
Query parameter technique has the following characteristic:
To access a path parameter, you need to declare a component property with getter, setter, [Parameter]
attribute and [SupplyParameterFromQuery]
attribute. For example:
@page "/query-parameters" <div>Param1: @Param1</div> @code { [SupplyParameterFromQuery] [Parameter] public bool Param1 { get; set; } }
In case of the requested URL does not contain the parameter, Blazor Server will assume the value of that parameter as the value of default
keyword of the respective type.