我在 Compojure/Luminus 应用程序中有一个操作:
(defn my-page1 [id]
(layout/render "my_page.html"
(let
[item (db/get-single-item {:id id})]
; this throws an exception
; if .....
; redirect "fdsfdsfd" :status 301
{ :my-item item})))
如何检查某些条件,如果为真,则重定向到具有 http 状态 301 的新 url?我应该在哪里输入我的代码以及如何进行重定向?