Qt/Qml获取1970年1月1日到现在的时间长度 发表于 2019-06-28 Qt/Qml获取1970年1月1日0时0分0秒到当前时间的长度。 Qt写法 返回秒(单位) 1qint64 QDateTime::toSecsSinceEpoch() const 返回毫秒(单位) 1qint64 QDateTime::toMSecsSinceEpoch() const Qml写法 返回秒(单位) 1parseInt(new Date / 1000) 返回毫秒(单位) 1new Date / 1