时间间隔组件

更新时间:2021-10-25 09:35:59下载pdf

DateText

时间间隔组件,解析一个时间段或者一段秒数,为 xx天之后、xx时之前、xx小时xx分钟之后。

时间间隔组件

组件Props

字段名 类型 描述 默认值
date number | string | Date 日期对象 null
from 同上 日期对象 不传就是今天,结果是计算date到from的间隔
time number 传入一段秒数,和date、from互斥
lang string en、zh en
format string 解析时间的格式可传 max、max2、(日时分秒 d h m s的组合值) max2
tail boolean 是否显示时间前后 true
space boolean 是否显示空格 true
parseNow boolean 是否处理0秒,处理为true返回刚刚,如果是false,就直接返回 0 秒 true
i18nData object 自己的国际化字段,可覆盖默认字段 {}
TextProps TextProps 可直接用RN的文本参数

使用

// 3 hours later
<DateText
   date="2021-09-05 12:11:11"
   from="2021-09-05 09:09:03"
   format="max"
   style={{ color: 'red', fontSize: 18 }}
  />