This is how I define my app:
(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)
The site here is used to capture :params, which is a new in compojure 0.6.0. However I'm getting a empty map in post-vote. I wonder what's wrong with the above code?
as I replied in the mailing-list, please ensure, that your form is really sending the params (input controls in html form have to have name="..." attribute)