Blazor_WASM路由如何实现长尾词导航?
- 内容介绍
- 文章标签
- 相关推荐
本文共计1070个文字,预计阅读时间需要5分钟。
Blazor WASM篇:路由+路由模板+通过Router组件实现Blazor应用中路由到Razor组件。Router组件在Blazor应用的App组件中使用。App组件模板如下:Router AppAssembly=@typeof(Program).Assembly Found Content
Blazor_WASM之4:路由
路由模板
通过 Router组件可在 Blazor 应用中路由到 Razor 组件。 Router 组件在 Blazor 应用的 App 组件中使用。App组件模板如下
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<p>Sorry, there's nothing at this address.</p>
</NotFound>
</Router>
在运行时,RouteView组件有两个作用:
- 从 Router 接收 RouteData(例如/test)以及所有路由参数。
本文共计1070个文字,预计阅读时间需要5分钟。
Blazor WASM篇:路由+路由模板+通过Router组件实现Blazor应用中路由到Razor组件。Router组件在Blazor应用的App组件中使用。App组件模板如下:Router AppAssembly=@typeof(Program).Assembly Found Content
Blazor_WASM之4:路由
路由模板
通过 Router组件可在 Blazor 应用中路由到 Razor 组件。 Router 组件在 Blazor 应用的 App 组件中使用。App组件模板如下
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<p>Sorry, there's nothing at this address.</p>
</NotFound>
</Router>
在运行时,RouteView组件有两个作用:
- 从 Router 接收 RouteData(例如/test)以及所有路由参数。

