1
使用的Compojure的API,如:如何訪問compojure-api處理程序中的會話?
(defapi app
(swagger-ui)
(swagger-docs
{:info {:title "Sample api"}})
(GET* "/" []
:no-doc true
(ok "hello world"))
(context* "/api" []
:tags ["thingie"]
(GET* "/plus" []
:return Long
:query-params [x :- Long, {y :- Long 1}]
:summary "x+y with query-parameters. y defaults to 1."
(ok (+ x y)))))
我怎麼進入環會話?
我建議檢查'defapi'擴展到什麼。尤其是「重組」部分擴展到的內容。 – muhuk