如何在Clojurescript中的Date对象上调用.toDateString()

时间:2015-01-11 17:28:21

标签: javascript clojure clojurescript om reagent

我正在尝试在Clojurescript中获取DateString:new Date(1420971497471).toDateString();

我遇到了麻烦,因为(js/Date 1420971497471)会返回一个字符串,所以我无法调用.toDateString()

这是我的Clojurescript代码:

(.toDateString (js/Date 1420971497471)) 
// Uncaught TypeError: undefined is not a function

1 个答案:

答案 0 :(得分:7)

(.toDateString (js/Date. 1420971497471))