Compojure 路由问题

发布于 2024-09-26 16:47:04 字数 770 浏览 5 评论 0原文

我有一个小型 compojure 站点,其路由定义如下:

(defroutes example
  (GET "/" [] {:status 200
               :headers {"Content-Type" "text/html"}
               :body (home)})
  (GET "/*" (or (serve-file (params :*)) :next))
  (GET "/execute/" [] {:status 200
                      :headers {"Content-Type" "text/html"}
                      :body (execute-changes)})
  (GET "/status/" [] {:status 200
                    :headers {"Content-Type" "text/html"}
                    :body (status)})
  (route/not-found "Page not found"))

当我尝试加载项目时,出现此错误:
java.lang.Exception:不支持的绑定形式:(或(serve-file (params :*)) :next)

我做错了什么?我从互联网上零散的例子中获取了大部分内容。

添加空向量后,出现此错误:
java.lang.Exception:无法解析符号:在此上下文中提供服务文件

I have a small compojure site, with the routes defined as such:

(defroutes example
  (GET "/" [] {:status 200
               :headers {"Content-Type" "text/html"}
               :body (home)})
  (GET "/*" (or (serve-file (params :*)) :next))
  (GET "/execute/" [] {:status 200
                      :headers {"Content-Type" "text/html"}
                      :body (execute-changes)})
  (GET "/status/" [] {:status 200
                    :headers {"Content-Type" "text/html"}
                    :body (status)})
  (route/not-found "Page not found"))

When I try to load the project, I get this error:
java.lang.Exception: Unsupported binding form: (or (serve-file (params :*)) :next)

What am I doing wrong? I took most of this from scattered examples on the internet.

After adding the empty vector, I get this error:
java.lang.Exception: Unable to resolve symbol: serve-file in this context

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遗忘曾经 2024-10-03 16:47:04

我认为您缺少绑定表格:

(GET "/*" {params :params} (or (serve-file (params :*)) :next))
        ; ^- note the binding form

I think you're missing a binding form:

(GET "/*" {params :params} (or (serve-file (params :*)) :next))
        ; ^- note the binding form
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文