- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我当前正在构建的消息应用程序中显示附加到每条消息的时间戳。然而,我在转换时间戳时发现的每个堆栈溢出问题都与 Angular 或 native 有关,我正试图在 react 中做到这一点。想知道我会用什么代码来显示类似的东西(例如:2/8/2018 11:04am || 或类似的东西)。
我当前使用的消息数组推送是:
this.messagesRef.push(
{
content: this.state.userMsg,
roomId: this.props.activeRoom.key,
username: (this.props.user ? this.props.user.displayName : 'guest'),
sentAt: this.props.firebase.database.ServerValue.TIMESTAMP
}
);
我的 git hub 推送是 (Git Link)
最佳答案
如果您有时间戳编号,您可以按照您的要求将其格式化:
const timestamp = Date.now(); // This would be the timestamp you want to format
console.log(new Intl.DateTimeFormat('en-US', {year: 'numeric', month: '2-digit',day: '2-digit', hour: '2-digit', minute: '2-digit', second: '2-digit'}).format(timestamp));
如果您希望日期包含一个数字而不是两个数字(2/8/2018 与 02/08/2018),只需将相应时间单位的格式从“2 位数字”更改为“数字”即可。
关于javascript - 如何在 react.js 中转换时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48689876/
给定一个带有多个 date_time 戳的字符串,我想 提取第一个戳及其前面的文本 候选字符串可以有一个或多个时间戳 后续的 date_time 戳记将被 sep="-" 隔开 后续date_time
是否可以合并从相机拍摄的文本和照片?我想在照片上标记日期和时间,但我在 Google 上找不到任何内容。 最佳答案 使用下面的代码来实现你所需要的。 Bitmap src = Bitm
有没有办法通过 Graph API 戳另一个用户?基于this post ,并使用 Graph Explorer ,我发布到“/USERID/pokes”,我已经授予它(Graph API 应用程序和
我有两个向左浮动的元素。一个是 body 的第一个 child ,另一个是容器的第一个 child ,容器是 body 的第二个 child 。 ...
我是一名优秀的程序员,十分优秀!