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
I receive this error in the javascript console (picture attached).
(defroute "/details/:id" {:as params} (render-details-page (:id params)))
This error happens even if I just take out the (:id params) part and just render a random component.
(:id params)
The text was updated successfully, but these errors were encountered:
if you want to use the id and query parameters of the page then do something like this
(defroute "/details/:id" [id query-params] (render-details-page (id query-params)))
Sorry, something went wrong.
No branches or pull requests
I receive this error in the javascript console (picture attached).
This error happens even if I just take out the
(:id params)
part and just render a random component.The text was updated successfully, but these errors were encountered: