-
Notifications
You must be signed in to change notification settings - Fork 4
常见问题
张东 edited this page Jun 6, 2024
·
1 revision
会话列表和消息组件支持自定义日期时间格式,可以通过 formatDateTime
参数来实现
<ConversationList
itemProps={{
formatDateTime: (time: number) => {
// 将 time 时间戳格式化成自己需要的格式
return new Date(time).toLocaleString();
},
}}
/>
<Chat
messageListProps={{
messageProps: {
formatDateTime: (time: number) => {
return new Date(time).toLocaleString();
},
},
}}
/>