.NET 客户端把服务端的UTC 时间转换成Local 时间

1. 服务端把DateTime类型转long 类型

2. 客户端创建本地时间

3. 格式化时间(可选)


1. 服务端把DateTime类型转long 类型

public static class DateTimeExtension
    {
        public static long UnixTimestampFromDateTime(this DateTime date)
        {
            long unixTimestamp = date.Ticks - new DateTime(1970, 1, 1).Ticks;
            unixTimestamp /= TimeSpan.TicksPerMillisecond;
            return unixTimestamp;
        }
    }

2.客户端 转换时间

function UTCToLocal(container) {

    container.find(".date").each(function () {
        if ($(this).html() != "" && $(this).html() != null)
        {
            var localDate = new Date(Number($(this).html()));  //
Number($(this).html()) 为服务端转换好的long类型
            $(this).html(localDate.Format("MM/dd/yyyy")); //设置时间格式, 这个需要一个时间插件 } });}


3.JS 加载插件

Date.prototype.Format = function (fmt) { //author: meizz
    var o = {
        "M+": this.getMonth() + 1,
        "d+": this.getDate(),
        "h+": this.getHours(),
        "m+": this.getMinutes(),
        "s+": this.getSeconds(),
        "q+": Math.floor((this.getMonth() + 3) / 3),
        "S": this.getMilliseconds()
    };
    if (/(y+)/.test(fmt))
        fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    for (var k in o)
        if (new RegExp("(" + k + ")").test(fmt))
            fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
    return fmt;
}


参考资料:how-to-convert-csharp-datetime-ticks-into-unix-timestamp



你可能感兴趣的:(.NET 客户端把服务端的UTC 时间转换成Local 时间)