fromnow()moment.js的时区问题

时间:2019-01-21 04:24:59

标签: timezone momentjs

我一直在使用moment.js在SharePoint中显示评论/回复时间。似乎存在时区问题。 如果由于时区问题而在几秒钟或几分钟前才更新少数项目,则显示上次更新的时间,并带有时区差异。例如,当评论某篇文章时,评论必须显示“几秒钟前”而显示“ 4小时前”

1 个答案:

答案 0 :(得分:0)

npm install moment
--------------------
var moment = require('moment');
moment().format();
moment().startOf('hour').fromNow();       
// an hour ago
see the examples 
https://momentjs.com/
http://momentjs.com/docs/#/customization/relative-time-threshold/