如何在 Uno 平台的 WebAssembly 中启用深度链接

How do I enable Deep linking in WebAssembly for Uno Platform

在 Uno Platform for WebAssembly 中实现 URL 深度链接的任何线索或方向?

我看到它在以下项目中实现,可以在 https://platform.uno/showcases/

上找到

项目:

深层链接可以通过 Application.OnLaunched 方法覆盖的 LaunchActivatedEventArgs.Arguments 完成。

您将找到浏览器当前地址的查询字符串部分,因此:

https://example.com/?test=1234&test2=5678

您将获得:

test=1234&test2=5678