Clojure 当前系统日期
Clojure current system date
如何将我从 clj-time 得到的结果转换为真实日期。
require [clj-time.core :as t]
(t/today)
;; [#<LocalDate 2015-08-25> 15]
我需要这样的日期:
;; 2015-08-25
joda 时间,因此 clj-time 以某种方式区分 "regular" 日期时间和本地日期时间;因为 (t/today)
是 org.joda.time.LocalDate
尝试 unparse-local
:
user=> (f/unparse-local (f/formatter "Y-MM-dd") (t/today))
"2015-08-25"
如何将我从 clj-time 得到的结果转换为真实日期。
require [clj-time.core :as t]
(t/today)
;; [#<LocalDate 2015-08-25> 15]
我需要这样的日期:
;; 2015-08-25
joda 时间,因此 clj-time 以某种方式区分 "regular" 日期时间和本地日期时间;因为 (t/today)
是 org.joda.time.LocalDate
尝试 unparse-local
:
user=> (f/unparse-local (f/formatter "Y-MM-dd") (t/today))
"2015-08-25"