os.time()生成时间戳的精度只能达到秒级,在很多联网应用中需要毫秒级的时间戳。
经查看LuatOS-SOC接口文档,发现了解决办法。
通过文档,我们只要获取当前数,然后把毫秒数与os.time()秒级时间戳进行字符串连接即可生成毫秒级时间戳。
Lua
local tm = socket.ntptm()
local s_timestamp=os.time()
local ms_timestamp = tostring(s_timestamp)..tostring(tm.tms)
ms_timestamp就是生成的毫秒级时间戳字符串。