我编写了简单的客户端 - 服务器应用程序,引用了“ClojureScript:Up and Running”。
https://github.com/phaendal/clojure-simple-client-server
如下面的服务器代码所示,/ text将请求和正文打印到控制台并从(slurp (:body req))
返回正文。
但如果:auto-refresh?
中的true
设置为project.clj
,(slurp (:body req))
将返回空字符串而不是已发送的值。
为什么它返回空?以及如何使用自动刷新获取请求体?
(ns client-server.server
(:gen-class)
(:require [compojure.route :as route]
[compojure.core :as compojure]
[ring.util.response :as response]))
(defn simple-print [req]
(let [body (slurp (:body req) :encoding "utf-8")]
(println req)
(println (str "slurped: " body))
body))
(compojure/defroutes app
(compojure/POST "/text" request (simple-print request))
(compojure/GET "/" request
(-> "public/index.html"
(response/resource-response)
(response/content-type "text/html")
(response/charset "utf-8")))
(route/resources "/"))
答案 0 :(得分:3)
当您设置auto-refresh: true
时,lein-ring也会通过ring.middleware.params
添加wrap-params
。见https://github.com/weavejester/ring-refresh/blob/master/src/ring/middleware/refresh.clj#L90-L102。
ring.middleware.params
完成其工作,通过将请求正文通过slurp
来解析请求正文中的form-parameter,就像在处理程序中一样。见https://github.com/mmcgrana/ring/blob/master/ring-core/src/ring/middleware/params.clj#L29
因此,当您尝试在处理程序中将其篡改时,请求正文已经清空。
另外,当您尝试POST时,请注意发送的内容类型。它默认为application/www-form-urlencoded
,需要参数名称和值。见http://www.w3.org/MarkUp/html-spec/html-spec_8.html#SEC8.2.1
就像在你的clojurescript中一样发送普通值并不能很好地使用表单参数解析器。在您的项目示例中,ring param中间件只是跳过它,因为从您的javascript发送的值不符合规范。如果您在POST请求中输入名称和值,则会在请求中显示:params键。