Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Uno Platform for WebAssembly 中实现 URL 深层链接的任何线索或方向?
我看到它在以下项目中实现,这些项目可以在https://platform.uno/showcases/上找到
项目:
深度链接可以通过LaunchActivatedEventArgs.Arguments方法Application.OnLaunched覆盖来完成。
LaunchActivatedEventArgs.Arguments
Application.OnLaunched
您将找到浏览器当前地址的查询字符串部分,因此对于:
https://example.com/?test=1234&test2=5678
你会得到:
test=1234&test2=5678