gpt4 book ai didi

ios - 从 Titanium 中的 UTC 时间获取设备时间/本地时间

转载 作者:行者123 更新时间:2023-11-29 13:21:00 27 4
gpt4 key购买 nike

我正在开发 Titanium 应用程序。我想在其中使用本地时间。我的问题是,当我使用时:

var currentDateTime = new Date();

它显示UTC时间

有没有办法获取当前本地时间或设备时间?

最佳答案

我使用 getTimezoneOffset 函数解决了这个问题。

我写了一个以UTC时间为参数并返回本地时间的方法

//Function Processes the passed UTC time and returns the current device time.
function changeUTCToLocal(utcTime)
{
var offset = utcTime.getTimezoneOffset();
var localTime = utcTime + offset;
return localTime;
}

关于ios - 从 Titanium 中的 UTC 时间获取设备时间/本地时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14358365/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com