mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-08 07:46:46 +02:00
Merge pull request #1120 from bobbywilson0/patch-1
Use keywords in POST/PUT examples
This commit is contained in:
@@ -155,8 +155,8 @@ Now, your handlers may utilize query parameters:
|
|||||||
```clojure
|
```clojure
|
||||||
(defroutes myapp
|
(defroutes myapp
|
||||||
(GET "/posts" req
|
(GET "/posts" req
|
||||||
(let [title (get (:params req) "title")
|
(let [title (get (:params req) :title)
|
||||||
author (get (:params req) "author")]
|
author (get (:params req) :author)]
|
||||||
(str "Title: " title ", Author: " author))))
|
(str "Title: " title ", Author: " author))))
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -165,8 +165,8 @@ Or, for POST and PUT requests, form parameters as well
|
|||||||
```clojure
|
```clojure
|
||||||
(defroutes myapp
|
(defroutes myapp
|
||||||
(POST "/posts" req
|
(POST "/posts" req
|
||||||
(let [title (get (:params req) "title")
|
(let [title (get (:params req) :title)
|
||||||
author (get (:params req) "author")]
|
author (get (:params req) :author)]
|
||||||
(str "Title: " title ", Author: " author))))
|
(str "Title: " title ", Author: " author))))
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user