javascript - Localize UTC timedate - Stack Overflow

admin2025-04-03  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"

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743689486a215520.html

最新回复(0)