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
On the page http://clojure-liberator.github.io/liberator/tutorial/decision-graph.html, it mentions to use "word" to get value of request parameter:
(= "tiger" (get-in ctx [:request :params "word"])))
However it doesn't work on my running environment (ring 1.3.2). The value is nil. So I have to use this to get value of request parameter.
(= "tiger" (get-in ctx [:request :params :word])))
Is this a bug in page? Or, is there anything wrong in my running environment? Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On the page http://clojure-liberator.github.io/liberator/tutorial/decision-graph.html, it mentions to use "word" to get value of request parameter:
However it doesn't work on my running environment (ring 1.3.2). The value is nil. So I have to use this to get value of request parameter.
Is this a bug in page? Or, is there anything wrong in my running environment?
Thanks.
The text was updated successfully, but these errors were encountered: