We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
navigator.handle("cddh://open") { ... print(1) } navigator.handle("cddh://<path:_>") { ... print(2) }
navigator.open("cddh://open?type=xxxx")
Result: Sometimes it's 1, sometimes it's 2.
1
2
Or
navigator.handle("cddh://open?type=pvp") { ... print(1) } navigator.handle("cddh://open?type=pvp_detail") { ... print(2) }
navigator.open("cddh://open?type=pvp_detail")
Result: 1
Hope can improve the matching rules, Can be executed first when it matches exactly.
Thanks!
@devxoul
The text was updated successfully, but these errors were encountered:
Fix URL matching rule devxoul#111
a26314a
9b2c06a
Fix results, remove original result devxoul#111
88751f1
Merge pull request #120 from Paldom/urlmatchfix-swift5
5fe9430
Fix URL matching rule #111
No branches or pull requests
Result:
Sometimes it's
1
, sometimes it's2
.Or
Result:
1
Hope can improve the matching rules,
Can be executed first when it matches exactly.
Thanks!
@devxoul
The text was updated successfully, but these errors were encountered: