【发布时间】:2015-04-08 22:42:58
【问题描述】:
在使用 clojure-ring 时,我试图通过将数据从表单中发布然后将其打印到浏览器来进行简单的测试。
(defroutes approutes
;posting test
(POST "/upload" [req]
(str "the wonderful world of wonka presents " req)))
当我尝试通过 curl 发布数据时,它给了我一个 200 正常的状态代码,但它实际上并没有用参数填充请求的正文。也许我忽略了关于 Ring 的一些基本内容。
编辑: 它的输出是
the wonderful world of wonka presents
但其余的没有出现。
【问题讨论】: