Skip to Content
文档

格式字节

用于将字节格式化为人类可读的格式

StorybookArk

File size: 1.45 kB

用法

¥Usage

import { FormatByte } from "@chakra-ui/react"
<FormatByte value={1000} />

示例

¥Examples

尺寸

¥Sizes

格式化函数适用于任何大小的字节。

¥The format functions works for any size of bytes.

50 byte

5 kB

5 MB

5 GB

格式位

¥Format Bits

使用 unit 属性将字节格式更改为位。

¥Use the unit prop to change the byte format to bits.

File size: 1.45 kb

语言环境

¥Locale

FormatByte 组件封装在 LocaleProvider 中以更改语言环境。

¥Wrap the FormatByte component within the LocaleProvider to change the locale.

de-DE

1,45 kB

zh-CN

1.45 kB

单元显示

¥Unit Display

使用 unitDisplay 属性将字节格式更改为紧凑表示法。

¥Use the unitDisplay prop to change the byte format to compact notation.

50.3kB

50.3 kB

50.3 kilobytes

属性

¥Props

PropDefaultType
value *
number

The byte size to format

unit
'bit' | 'byte'

The unit granularity to display

unitDisplay
'long' | 'short' | 'narrow'

The unit display

Previous

FormatNumber

Next

复选标记