gpt4 book ai didi

clojure - Compojure route 的逗号

转载 作者:行者123 更新时间:2023-12-02 21:08:57 25 4
gpt4 key购买 nike

我正在尝试创建一个路由,该路由的参数在 compojure 中包含逗号

(GET "/tags/multiple/:tag-names" [tag-names] multiple-tags)

但由于某种原因,每当我在 :tag-names 字段中包含逗号时,就会出现 404 错误。当没有逗号时它工作正常。

有谁知道造成这种情况的原因以及如何解决它?

最佳答案

Compojure 使用 clout用于路由。来自 cloutREADME :

Clout supports both keywords and wildcards. Keywords (like :title) will match any character but the following: / . , ; ?.

默认情况下,clout 将逗号视为路径段分隔符。您可以通过将自定义正则表达式传递给路由来解决这个问题。以下将使 :tag-names 匹配除 / 之外的任何字符:

(GET ["/tags/multiple/:tag-names" :tag-names #"[^/]+"] [tag-names] multiple-tags)

关于clojure - Compojure route 的逗号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16229372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com