如何使用 beamer 实现 "not found" 页面
how to implement "not found" page with beamer
我正在使用 beamer flutter 包
我正在尝试实施 'not found page'
假设用户在网络上并在 url
上键入
http://localhost:64132/#/mdn%20vab%20ad,had
我想将用户路由到未找到的页面
你能推荐一种使用 beamer 来做到这一点的方法吗?
谢谢
最好使用 SimpleLocationBuilder
或 BeamerLocationBuilder
。这两个将自动检测 not-found
,而完全自定义的 locationBuilder
不会(在这种情况下,如果所有其他检查都失败,您将只返回自定义的 not-found
BeamLocation
) .
要定义 not-found
页面,您可以在 BeamerDelegate
:
中使用这些属性之一
- notFoundPage
- notFoundRedirectNamed
- notFoundRedirect(仅在您未使用
SimpleLocationBuilder
时)
我正在使用 beamer flutter 包
我正在尝试实施 'not found page'
假设用户在网络上并在 url
上键入
http://localhost:64132/#/mdn%20vab%20ad,had
我想将用户路由到未找到的页面
你能推荐一种使用 beamer 来做到这一点的方法吗?
谢谢
最好使用 SimpleLocationBuilder
或 BeamerLocationBuilder
。这两个将自动检测 not-found
,而完全自定义的 locationBuilder
不会(在这种情况下,如果所有其他检查都失败,您将只返回自定义的 not-found
BeamLocation
) .
要定义 not-found
页面,您可以在 BeamerDelegate
:
- notFoundPage
- notFoundRedirectNamed
- notFoundRedirect(仅在您未使用
SimpleLocationBuilder
时)