compojure

    0熱度

    1回答

    我有一個網絡應用程序,它有CSRF保護,但我需要禁用某些endpoints(public APIs)這種保護,所以我可以發送Rest調用沒有問題。 這裏是我的代碼: (def handler (-> route.all/routes log-middleware (wrap-defaults site-defaults);;which provides CSRF p

    0熱度

    1回答

    我爲我的compojure應用程序設置了靜態資源。我需要使用wrap-file而不是wrap-resource,因爲我需要從文件系統提供靜態文件。 我跟着這個wiki和配置wrap-file 現在我能夠從http:\\localhost\static-file.css 我想要做的就是爲我的靜態資產在特定的情況下爲我的靜態資產http:\\localhost\context\static-file.

    6熱度

    1回答

    例如Luminus公司網站states是 的Compojure路由定義只是接受請求 地圖和返回響應地圖功能... (GET "/" [] "Show something") ... 不過的Compojure路線是不功能 (defmacro GET "Generate a `GET` route." [path args & body] (compile-route :ge

    0熱度

    1回答

    我使用Cloujre的Compojure構建服務器。默認路由是compojure.route/not-found,有沒有辦法讓請求達到這條路?我想打印所有結束的請求。

    0熱度

    1回答

    我使用clojure jdbc,compojure,cheshire,postgresql,c3p0,tryin使REST。當我使用此代碼爲處理 (defn get-document [id] (sql/query (db-connection) ["select * from document where id = cast(? as integer)" id]

    1熱度

    1回答

    我是compojure api的新手。 如何以JSON格式顯示身體響應? 這是我寫的代碼 core.clj (ns clojure-dauble-business-api.core (:require [compojure.api.sweet :refer :all]) (:require [ring.util.http-response :refer :all])

    2熱度

    2回答

    我一直在爲此掙扎了兩天以上,似乎找不到解決方案。 因此,所有我試圖做的就是在瀏覽器中顯示圖像,但是當我打電話端點,這是發生了什麼: Cannot JSON encode object of class: class java.io.File 端點 (context "/servers" [] :datomic true (GET "/:id/graph/:pane

    0熱度

    1回答

    我是clojure的新手。我想從數據庫中獲取帶有字段的x記錄,並且想要將記錄插入到數據庫中。在這種情況下,我應該使用defrecord和defschema之間的哪一個? 這些是一樣的嗎?

    0熱度

    2回答

    我可以讀取郵寄請求的RAW JSON。但不知道我是否正確地做到了這一點? CODE (ns clojure-dauble-business-api.core (:require [compojure.api.sweet :refer :all] [ring.util.http-response :refer :all] [clojure-dauble-busi

    0熱度

    1回答

    我需要響應中可用的未插值路徑(例如/ resources /:resourceId)來記錄路徑的持續時間。什麼是適當的方式來做到這一點?