Variable passed to macro gets resolved in wrong namespace?

后端 未结 4 2154
被撕碎了的回忆
被撕碎了的回忆 2021-01-12 05:04

The Noir macro defpage is giving me a little bit of trouble. I am trying to construct a call similar to this:

(defpage [:post \"some/url\"] [dat         


        
4条回答
  •  梦毁少年i
    2021-01-12 05:59

    What about passing my-method along with namespace it is in:

    (defpage [myns/my-method "some/url"] [data]
    ;;
    )
    

提交回复
热议问题