优化 `util.toDateString()` 示例和文档介绍

pull/1315/head
贤心 2023-08-08 18:15:14 +08:00
parent f900148416
commit bb800db2b9
1 changed files with 3 additions and 2 deletions

View File

@ -116,17 +116,18 @@ var result2 = util.toDateString(new Date('2023-01-01 11:35:25'), 'ss[s]'); // 25
// 自定义 meridiem
var result3 = util.toDateString(
'2023-01-01 11:35:25',
'hh:mm:ss A'
'hh:mm:ss A',
{
customMeridiem: function(hours, minutes){
return (hours < 12 ? 'AM' : 'PM')
//.split('').join('.') // 有句点A.M.
//.toLowerCase() // 小写a.m.
}
}
); // 11:35:25 AM
```
所有可用的格式列表
参数 `format` 所有可用的格式列表 :
| 格式 | 示例 | 描述 |
| --- | --- | --- |