字符串
以 国际标准化组织 8601 格式解析给定字符串(允许使用空格代替 'T')并返回 Day.js 对象实例。
¥Parse the given string in ISO 8601 format (a space instead of the 'T' is allowed) and return a Day.js object instance.
dayjs('2018-04-04T16:00:00.000Z')
dayjs('2018-04-13 19:18:17.040+02:00')
dayjs('2018-04-13 19:18')
为了在解析 ISO 8601 字符串以外的任何内容时获得一致的结果,你应该使用 字符串 + 格式。
¥For consistent results parsing anything other than ISO 8601 strings, you should use String + Format.