每当我在Clojurescript中打印cljs.core / UUID时,我都会看到:
#uuid "a7fc5304-010b-41fd-9e4e-4498cfb0e206"
:我想看到的只是:
"a7fc5304-010b-41fd-9e4e-4498cfb0e206"
:我如何只访问Clojurescript UUID的字符串部分?
答案 0 :(得分:5)
只需使用str
:
(str #uuid "a7fc5304-010b-41fd-9e4e-4498cfb0e206")