我想created post
在执行我的数据库查询函数后作为返回值。这是我的数据库函数的一个示例:
(defn add-post-record [post]
(sql/with-connection
db
(sql/insert-record :post post )))
我在路线中需要的是:
(def post (db/add-post-record {:title title
:body body
:owner user
:isdraft isdraft}))
然后我会像这样使用它:(:id post)
我对clojure很陌生。这可能是一个非常简单的问题,但我被卡住了。
谢谢你。