This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-02-29
Channels
- # announcements (6)
- # babashka (7)
- # beginners (24)
- # calva (2)
- # cider (21)
- # clj-kondo (49)
- # cljdoc (29)
- # clojure (56)
- # clojure-dev (2)
- # clojure-europe (15)
- # clojure-nl (6)
- # clojure-norway (27)
- # clojure-uk (3)
- # clojuredesign-podcast (6)
- # clojurescript (1)
- # conjure (1)
- # core-async (8)
- # cryogen (2)
- # cursive (6)
- # data-science (1)
- # datomic (12)
- # events (1)
- # fulcro (16)
- # graalvm (28)
- # hyperfiddle (2)
- # lambdaisland (4)
- # leiningen (20)
- # observability (1)
- # off-topic (24)
- # pathom (5)
- # pedestal (10)
- # portal (7)
- # practicalli (1)
- # reitit (5)
- # rewrite-clj (20)
- # shadow-cljs (18)
- # vim (8)
- # xtdb (9)
👋 hello! I’m building a Web API with Reitit (via Kit) and as soon as I specified response schemata in my routes response validation started working, which was great! However I’m now adding schemata for requests and while the response coercion seems to be working correctly, and the requests look correct in the Swagger UI, I don’t seem to have any request validation happening. Can anyone suggestion one or two things to check to enable request validation?
Background: I’m a new user of Reitit, via a new project I’ve created via Kit. I’ve been away from Clojure Web dev for a few years and I’d used Compojure back in the day. Reitit seems really cool!
[SOLVED]
Hi, when using reitit ring-handler with :inject-match? true
, the fragment
data is not passed to the match.
I've noticed that if I have :href "/path#test"
in the match I will have :fragment "test"
, but if I manually paste the url in the browser as /path#test
the match data is comming with :fragment nil
.
Do I need some additional setting/parsing for it?