这就是我定义我的应用程序的方式:
(defroutes index
(GET "/" [] (main-page))
(GET "/form" [] (render-page "Vote" (render-form)))
(POST "/vote" {params :params} (post-vote params))
(route/not-found "Page not found"))
(def app (site index))
(defservice app)
这里的站点用于捕获 :params,这是 compojure 0.6.0 中的一个新功能。但是,我在投票后得到了一张空地图。我想知道上面的代码有什么问题?