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

javascript - Localize UTC timedate - Stack Overflow

programmeradmin0浏览0评论

i have a timestamp which es from server (utc). I now want to transform this timestamp to my local time.

Transform UTC:

2016-08-11 12:19:14

To local time:

2016-08-11 14:19:14

This is what i have used:

localizeTime = function (timeToLocalize = "2016-08-11 12:19:14") {
    return moment(timeToLocalize).locale(deviceLocale = "de").format('LLL');
};

I am working with react-native and moment.js

i have a timestamp which es from server (utc). I now want to transform this timestamp to my local time.

Transform UTC:

2016-08-11 12:19:14

To local time:

2016-08-11 14:19:14

This is what i have used:

localizeTime = function (timeToLocalize = "2016-08-11 12:19:14") {
    return moment(timeToLocalize).locale(deviceLocale = "de").format('LLL');
};

I am working with react-native and moment.js

Share asked Aug 11, 2016 at 15:23 BigPun86BigPun86 2,6862 gold badges27 silver badges50 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

If the input time is UTC, and you don't have anything in the string to indicate such, then you need to parse it with moment.utc instead of just with moment. You can then convert it to local time with the local function.

moment.utc("2016-08-11 12:19:14").local().format("YYYY-MM-DD HH:mm:ss")

You don't need to involve locales (like de) unless you really want a locale-specific string format. Locale has to do with language and culture, not with time zones. "local" != "locale"

发布评论

评论列表(0)

  1. 暂无评论