最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to format Milliseconds with Intl.DateTimeFormat API - Stack Overflow

programmeradmin2浏览0评论

I need to format a Timestamp in a specific locale (not utc, not browser locale). But I must have the millisecond part of the date, too. My first attempt was second:'numeric' with the DateTimeFormat API:

new Intl.DateTimeFormat(
    'de-de', // german as an example, user selectable
    { 
        year: 'numeric', month: 'numeric',  day: 'numeric', 
        hour: 'numeric', minute: 'numeric', 
        second: 'numeric',
        hour12: false
    }
)
.format(new Date()); // Date as an example

But the result is something like "26.11.2018, 09:31:04" and not "26.11.2018, 09:31:04,243".

Is there a easier possibility than using formatToParts() and detect the missing millisecond and add it again with the Intl.NumberFormat?

Attention: If someone needs to implement this, Microsoft browsers are adding Left-To-Right-Mark Unicode chars into the output. So you can not parseInt the result from formatToParts() without sanitizing.

Edit: Moved the question to

I need to format a Timestamp in a specific locale (not utc, not browser locale). But I must have the millisecond part of the date, too. My first attempt was second:'numeric' with the DateTimeFormat API:

new Intl.DateTimeFormat(
    'de-de', // german as an example, user selectable
    { 
        year: 'numeric', month: 'numeric',  day: 'numeric', 
        hour: 'numeric', minute: 'numeric', 
        second: 'numeric',
        hour12: false
    }
)
.format(new Date()); // Date as an example

But the result is something like "26.11.2018, 09:31:04" and not "26.11.2018, 09:31:04,243".

Is there a easier possibility than using formatToParts() and detect the missing millisecond and add it again with the Intl.NumberFormat?

Attention: If someone needs to implement this, Microsoft browsers are adding Left-To-Right-Mark Unicode chars into the output. So you can not parseInt the result from formatToParts() without sanitizing.

Edit: Moved the question to https://github./tc39/ecma402/issues/300

Share Improve this question edited Jul 10, 2019 at 13:38 HolgerJeromin asked Nov 26, 2018 at 8:45 HolgerJerominHolgerJeromin 2,47224 silver badges22 bronze badges 1
  • 1 Yup, there doesn't seem to be a clean answer to this. Since seconds are pletely immune from timezone issues, I would remove seconds from your formatting object, and concatenate them with a call to myDate.getSeconds(). – bbsimonbb Commented Nov 26, 2018 at 10:04
Add a ment  | 

1 Answer 1

Reset to default 8

This is now spec'ed and implemented in Chrome and Firefox:

https://github./tc39/ecma402/issues/300

https://caniuse./mdn-javascript_builtins_intl_datetimeformat_datetimeformat_options_parameter_options_fractionalseconddigits_parameter

new Date().toLocaleString('de-de', { year: 'numeric', month: 'numeric',  day: 'numeric', 
        hour: 'numeric', minute: 'numeric', 
        second: 'numeric',
        fractionalSecondDigits: 3
    }
)
// or
new Intl.DateTimeFormat(
    'de-de', // german as an example, user selectable
    { 
        year: 'numeric', month: 'numeric',  day: 'numeric', 
        hour: 'numeric', minute: 'numeric', 
        second: 'numeric', fractionalSecondDigits: 3,
        hour12: false
    }
)
.format(new Date());
// => "6.1.2021, 12:30:52,719"
发布评论

评论列表(0)

  1. 暂无评论