在Clojurescript中如何获取UUID的String部分?

时间:2013-06-20 07:40:18

标签: clojurescript

每当我在Clojurescript中打印cljs.core / UUID时,我都会看到:

#uuid "a7fc5304-010b-41fd-9e4e-4498cfb0e206"

:我想看到的只是:

"a7fc5304-010b-41fd-9e4e-4498cfb0e206"

:我如何只访问Clojurescript UUID的字符串部分?

1 个答案:

答案 0 :(得分:5)

只需使用str

(str #uuid "a7fc5304-010b-41fd-9e4e-4498cfb0e206")