Empty空状态

空状态时的展示占位图。

何时使用#

  • 当目前没有数据时,用于显式的用户提示。

  • 初始化场景时的引导创建流程。

代码演示

暂无数据

简单的展示。

expand codeexpand code
import { Empty } from 'antd';

ReactDOM.render(<Empty />, mountNode);

暂无数据

可以通过设置 imageEmpty.PRESENTED_IMAGE_SIMPLE 选择另一种风格的图片。

expand codeexpand code
import { Empty } from 'antd';

ReactDOM.render(<Empty image={Empty.PRESENTED_IMAGE_SIMPLE} />, mountNode);
empty

Customize Description

自定义图片链接、图片大小、描述、附属内容。

expand codeexpand code
import { Empty, Button } from 'antd';

ReactDOM.render(
  <Empty
    image="https://gw.alipayobjects.com/mdn/miniapp_social/afts/img/A*pevERLJC9v0AAAAAAAAAAABjAQAAAQ/original"
    imageStyle={{
      height: 60,
    }}
    description={
      <span>
        Customize <a href="#API">Description</a>
      </span>
    }
  >
    <Button type="primary">Create Now</Button>
  </Empty>,
  mountNode,
);

Select

TreeSelect

Cascader

Transfer

0

暂无数据

0

暂无数据

Table

Name
Age

暂无数据

List

暂无数据

自定义全局组件的 Empty 样式。

expand codeexpand code
import {
  ConfigProvider,
  Switch,
  Divider,
  Icon,
  TreeSelect,
  Select,
  Cascader,
  Transfer,
  Table,
  List,
} from 'antd';

const customizeRenderEmpty = () => (
  <div style={{ textAlign: 'center' }}>
    <Icon type="smile" style={{ fontSize: 20 }} />
    <p>Data Not Found</p>
  </div>
);

const style = { width: 200 };

class Demo extends React.Component {
  state = {
    customize: false,
  };

  render() {
    const { customize } = this.state;
    return (
      <div>
        <Switch
          unCheckedChildren="default"
          checkedChildren="customize"
          checked={customize}
          onChange={val => {
            this.setState({ customize: val });
          }}
        />

        <Divider />

        <ConfigProvider renderEmpty={customize && customizeRenderEmpty}>
          <div className="config-provider">
            <h3>Select</h3>
            <Select style={style} />

            <h3>TreeSelect</h3>
            <TreeSelect style={style} treeData={[]} />

            <h3>Cascader</h3>
            <Cascader style={style} options={[]} showSearch />

            <h3>Transfer</h3>
            <Transfer />

            <h3>Table</h3>
            <Table
              style={{ marginTop: 8 }}
              columns={[
                {
                  title: 'Name',
                  dataIndex: 'name',
                  key: 'name',
                },
                {
                  title: 'Age',
                  dataIndex: 'age',
                  key: 'age',
                },
              ]}
            />

            <h3>List</h3>
            <List />
          </div>
        </ConfigProvider>
      </div>
    );
  }
}

ReactDOM.render(<Demo />, mountNode);

无描述展示。

expand codeexpand code
import { Empty } from 'antd';

ReactDOM.render(<Empty description={false} />, mountNode);

API#

<Empty>
  <Button>创建</Button>
</Empty>
参数说明类型默认值版本
description自定义描述内容string | ReactNode-3.12.0
imageStyle图片样式CSSProperties-3.16.0
image设置显示图片,为 string 时表示自定义图片地址。string | ReactNodeEmpty.PRESENTED_IMAGE_DEFAULT3.12.0

内置图片 (3.16.0 以上版本)#

  • Empty.PRESENTED_IMAGE_SIMPLE

  • Empty.PRESENTED_IMAGE_DEFAULT

Descriptions描述列表List列表