CoffeeScript 日期 - toLocaleString()

描述

toLocaleString() 方法使用操作系统的本地约定将日期转换为字符串。

toLocaleString 方法依赖于底层操作系统来格式化日期。 它使用运行脚本的操作系统的格式约定将日期转换为字符串。 例如,在美国,月份出现在日期 (04/15/98) 之前,而在德国,日期出现在月份 (15.04.98) 之前。


语法

下面给出了 toLocaleString() 方法的语法。

Date.toLocaleString()

返回值

以字符串格式返回格式化日期。


示例

以下示例演示了 CoffeeScript 中 toLocaleString() 方法的用法。 将此代码保存在名为 date_tolocalestring.coffee 的文件中。

dt = new Date(1993, 6, 28, 14, 39, 7);
console.log dt.toLocaleString()

打开命令提示符并编译.coffee 文件,如下所示。

c:\> coffee -c date_tolocalestring.coffee

在编译时,它会提供以下 JavaScript。

// Generated by CoffeeScript 1.10.0
(function() {
  var dt;

  dt = new Date(1993, 6, 28, 14, 39, 7);

  console.log(dt.toLocaleString());

}).call(this);

现在,再次打开命令提示符,然后运行 CoffeeScript 文件,如下所示。

c:\> coffee date_tolocalestring.coffee

执行时,CoffeeScript 文件产生以下输出。

7/28/1993, 2:39:07 PM

❮ CoffeeScript - 日期