WhatsApp lastseen 功能如何

WhatsApp lastseen function how to

为了从 whatsApp 网络界面检索特定联系人的最新信息,我 运行 在 Chrome 63.xx 中构建以下代码,它检索以下用代码突出显示的信息。但是我不知道怎么解释,我怀疑最后的t: 1513932466值是数据和时间的格式,是用整数格式写的。

所以我的问题是如何将其转换为人类可读的格式,例如日期 + 时间?

Store.Wap.lastseenFind("phone_number" + '@c.us').then(function(r){ console.log(r)})

t {_flags: 0, 
   _value: undefined, 
   _onFulfilled: ƒ, 
   _onRejected: undefined,
   _context: undefined, 
   …}control: undefined
   x: undefined_child: undefined_children: undefined_context: 
   undefined_control: undefined_flags: 5_onFulfilled: ƒ (r)_onRejected: 
   undefined_parent: undefined_resolveLevel: 2_thenableParent: null_value: 
   undefined__proto__: Object
   VM36:1 {t: 1513932466}
   t: 1513932466__proto__: Object

我不确定 Whatsapp 是什么 returns,但你提供的数值是一个 unix 时间戳,你可以使用你使用的几乎任何语言将其转换为人类可读的日期格式。

既然你已经使用了Javascript,这就是将你的时间戳转换为日期格式的方法。

您需要将时间戳乘以 1000 才能将其转换为毫秒。

var timestamp = 1513932466;
var datetime = new Date(timestamp * 1000);

console.log(datetime);

希望对您有所帮助!随时询问您是否需要了解任何信息:)