Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
複数のパラメーターを含む複合ルートを定義することは可能ですか?
すなわち:
(def my-routes (routes (GET "/something/:param1/:param2" [] my-handler)))
これは私のために働きます:
(GET "/something/:param1/:param2" [param1 param2] (str {:first param1 :second param2}))