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
Assuming the following route:
crossroads.addRoute('/chapters/{id}', id => { console.log(id); });
What is the right way to detect a change from /chapters/1 to /chapters/2? The match method is called but I can't seem to access the previous param.
/chapters/1
/chapters/2
match
More specifically, I'm looking for a way to trigger a custom exit method with the id param as argument.
exit
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Assuming the following route:
What is the right way to detect a change from
/chapters/1
to/chapters/2
? Thematch
method is called but I can't seem to access the previous param.More specifically, I'm looking for a way to trigger a custom
exit
method with the id param as argument.The text was updated successfully, but these errors were encountered: