How to format time since xxx e.g. “4 minutes ago” similar to Stack Exchange sites

后端 未结 25 1906
遥遥无期
遥遥无期 2020-11-22 12:57

The question is how to format a JavaScript Date as a string stating the time elapsed similar to the way you see times displayed on Stack Overflow.

e.g.<

25条回答
  •  温柔的废话
    2020-11-22 13:20

    Might be an overkill in this case, but if the opportunity shows moment.js is just awesome!

    Moment.js is a javascript datetime library, to use it for such scenario, you'd do:

    moment(yourdate).fromNow()
    

    http://momentjs.com/docs/#/displaying/fromnow/

    2018 addendum: Luxon is a new modern library and might be worth a look!

提交回复
热议问题