MomentJS - 语言环境



此方法有助于使用语言环境获取/设置持续时间。与 humanize 一起使用时,您会看到 locale() 方法的输出差异。

语法

moment.duration().locale();
moment.duration().locale(String);

示例

var hi = moment.duration(1, "day").locale("hi").humanize();
var en = moment.duration(1, "minutes").locale("en").humanize();
var ja = moment.duration(1, "seconds").locale("ja").humanize();
var it = moment.duration(1, "hours").locale("it").humanize();
var marathi = moment.duration(1, "day").locale("mr").humanize();
var konkani = moment.duration(1, "day").locale("gom-latn").humanize();
var kn = moment.duration(1, "day").locale("kn").humanize();

输出

Locales
momentjs_durations.htm
广告