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
When you execute FlowRouter.go('otherRoute') it appends two slashes at the end because the two optional parameters were not found.
FlowRouter.go('otherRoute')
FlowRouter.route('/other-route/:param1?/:param2?', { name: 'otherRoute', action: function () { // Do something... } }); FlowRouter.route('/', { name: 'home', action: function () { FlowRouter.go('otherRoute'); } });
The text was updated successfully, but these errors were encountered:
My current workaround is simply to do FlowRouter.go('/other-route').
FlowRouter.go('/other-route')
Sorry, something went wrong.
Yay thanks.
No branches or pull requests
When you execute
FlowRouter.go('otherRoute')
it appends two slashes at the end because the two optional parameters were not found.The text was updated successfully, but these errors were encountered: