如何从 Reitit 后端 Clojure 路由中获取路径参数?我正在尝试通过:id
以下方式获取与关联的 val,但在 REPL 中不断收到 404 file not found 错误。
["/foo/:id" {:get
(fn [{:keys [path-params ]}]
(some-ns/some-fn (:id path-params)))}]
我尝试使用https://luminusweb.com/docs/routes.html和https://github.com/metosin/reitit/blob/master/README.md上的文档。