13位时间戳转化成日期格式

一、13位时间戳转换成字符串

公司项目从数据库取出的时间是13位时间戳,数据传到前台需要进行格式转换一下。
function timeFormat(nS) {
return new Date(parseInt(("/Date("+nS+")/").substr(6, 13))).toLocaleDateString();
};

  1. 时间转化为时间戳(13位)
    // 当前时间
    NSDate* date = [NSDate dateWithTimeIntervalSinceNow:0];
    NSTimeInterval a=[date timeIntervalSince1970]*1000; // *1000 是精确到毫秒,不乘就是精确到秒
    NSString *timeString = [NSString stringWithFormat:@"%.0f", a]; //转为字符型

二、10位时间戳转换成字符串

+(NSString *)getDateString:(NSString *)spString
{
NSDate *confromTimesp = [NSDate dateWithTimeIntervalSince1970:[spString intValue]];
NSDateFormatter dateFormat=[[NSDateFormatter alloc]init];
[dateFormat setDateFormat:@“HH:mm”];
NSString
string=[dateFormat stringFromDate:confromTimesp];
return string;
}

你可能感兴趣的:(13位时间戳转化成日期格式)