在 discord.js 中添加日期时间描述
Add a date-time description in discord.js
如何在 discord.js
中创建这样的 日期时间 描述?我尝试使用 timestamp
但它会将日期添加到页脚
这是新的(到现在已有半年多了)时间戳格式语法。
来自 official documentation:
格式
Type
Structure
Example
....
....
....
Unix Timestamp
<t:TIMESTAMP>
<t:1618953630>
Unix Timestamp (Styled)
<t:TIMESTAMP:STYLE>
<t:1618953630:d>
时间戳将在用户的时区和语言环境中显示给定的时间戳。
时间戳样式
Style
Example Output
Description
t
16:20
Short Time
T
16:20:30
Long Time
d
20/04/2021
Short Date
D
20 April 2021
Long Date
f *
20 April 2021 16:20
Short Date/Time
F
Tuesday, 20 April 2021 16:20
Long Date/Time
R
2 months ago
Relative Time
* 默认值
如何在 discord.js
中创建这样的 日期时间 描述?我尝试使用 timestamp
但它会将日期添加到页脚
这是新的(到现在已有半年多了)时间戳格式语法。
来自 official documentation:
格式
Type | Structure | Example |
---|---|---|
.... | .... | .... |
Unix Timestamp | <t:TIMESTAMP> | <t:1618953630> |
Unix Timestamp (Styled) | <t:TIMESTAMP:STYLE> | <t:1618953630:d> |
时间戳将在用户的时区和语言环境中显示给定的时间戳。
时间戳样式
Style | Example Output | Description |
---|---|---|
t | 16:20 | Short Time |
T | 16:20:30 | Long Time |
d | 20/04/2021 | Short Date |
D | 20 April 2021 | Long Date |
f * | 20 April 2021 16:20 | Short Date/Time |
F | Tuesday, 20 April 2021 16:20 | Long Date/Time |
R | 2 months ago | Relative Time |
* 默认值