TS中获取当前系统时间的 Unix 时间戳
时间: 2023-06-28 09:04:55
浏览: 263
在 TypeScript 中获取当前系统时间的 Unix 时间戳可以通过以下代码实现:
```typescript
const unixTimestamp = Math.floor(Date.now() / 1000);
`Date.now()` 方法会返回当前时间距离 1970 年 1 月 1 日 00:00:00 UTC 的毫秒数,因此需要将其除以 1000 并向下取整,得到 Unix 时间戳。
相关问题
oracle中时间戳转为时间
在 Oracle 中,可以使用 `TO_TIMESTAMP` 函数将时间戳转换为时间。
语法如下:
TO_TIMESTAMP(timestamp_string, [format])
```
C#将string的时间转换成时间戳
可以使用C#中的DateTime和TimeSpan类将字符串时间转换为时间戳。具体操作如下:
```csharp
//将字符串时间转换为DateTime对象
DateTime dt = DateTime.Parse("2021-07-20 15:30:00");
//获取1970-01-01到现在的时间间隔
TimeSpan ts = dt - new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc);
//获取时间戳
long timestamp = Convert.ToInt64(ts.TotalSeconds);
其中,DateTime.Parse()方法将字符串时间转换为DateTime对象,TimeSpan类用于计算时间间隔,new DateTime(1970, 1, 1, 0, 0, 0, 0,