我是 Clojure webdev 生态系统的新手,我想使用 liberator API 使用 POST 方法发送 JSON 响应,我试过这个:
(POST "/post/savecomment"
request
(resource
:allowed-methods [:post]
:available-media-types ["application/json"]
:handle-ok (fn [ctx]
(format (str "{body: %s a: 1 b: 4}"), "the body part"))))
一切看起来都很好,没有错误消息,我从 ring 收到“201 Created”响应,但 JSON 数据未发送,Chrome 中的“响应”选项卡为空。需要我添加一些东西吗?顺便说一句,我使用的是 compojure,而不是 compojure-api。
我也试过:
(POST "/post/savecomment" request (resource
:allowed-methods [:post]
:available-media-types ["application/json"]
:available-charsets ["utf-8"]
:handle-ok (fn [_] (rep/ring-response {:status 200 :body "\"this is json\""}))
:post! (fn [ctx] (rep/ring-response {:status 666 :body "\"this is json\""}))
))
但没有运气。