Result结果

用于反馈一系列操作任务的处理结果。

何时使用#

当有重要操作需告知用户处理结果,且反馈内容较为复杂时使用。

代码演示

Successfully Purchased Cloud Server ECS!
Order number: 2017182818828182881 Cloud server configuration takes 1-5 minutes, please wait.

成功的结果。

expand codeexpand code
import { Button, Result } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Result
    status="success"
    title="Successfully Purchased Cloud Server ECS!"
    subTitle="Order number: 2017182818828182881 Cloud server configuration takes 1-5 minutes, please wait."
    extra={[
      <Button type="primary" key="console">
        Go Console
      </Button>,
      <Button key="buy">Buy Again</Button>,
    ]}
  />
);

export default App;
Your operation has been executed

展示处理结果。

expand codeexpand code
import { Button, Result } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Result
    title="Your operation has been executed"
    extra={
      <Button type="primary" key="console">
        Go Console
      </Button>
    }
  />
);

export default App;
There are some problems with your operation.

警告类型的结果。

expand codeexpand code
import { Button, Result } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Result
    status="warning"
    title="There are some problems with your operation."
    extra={
      <Button type="primary" key="console">
        Go Console
      </Button>
    }
  />
);

export default App;
403
Sorry, you are not authorized to access this page.

你没有此页面的访问权限。

expand codeexpand code
import { Button, Result } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Result
    status="403"
    title="403"
    subTitle="Sorry, you are not authorized to access this page."
    extra={<Button type="primary">Back Home</Button>}
  />
);

export default App;
404
Sorry, the page you visited does not exist.

此页面未找到。

expand codeexpand code
import { Button, Result } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Result
    status="404"
    title="404"
    subTitle="Sorry, the page you visited does not exist."
    extra={<Button type="primary">Back Home</Button>}
  />
);

export default App;
500
Sorry, something went wrong.

服务器发生了错误。

expand codeexpand code
import { Button, Result } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Result
    status="500"
    title="500"
    subTitle="Sorry, something went wrong."
    extra={<Button type="primary">Back Home</Button>}
  />
);

export default App;
Submission Failed
Please check and modify the following information before resubmitting.
The content you submitted has the following error:
Your account has been frozen. Thaw immediately >
Your account is not yet eligible to apply. Apply Unlock >

复杂的错误反馈。

expand codeexpand code
import { CloseCircleOutlined } from '@ant-design/icons';
import { Button, Result, Typography } from 'antd';
import React from 'react';

const { Paragraph, Text } = Typography;

const App: React.FC = () => (
  <Result
    status="error"
    title="Submission Failed"
    subTitle="Please check and modify the following information before resubmitting."
    extra={[
      <Button type="primary" key="console">
        Go Console
      </Button>,
      <Button key="buy">Buy Again</Button>,
    ]}
  >
    <div className="desc">
      <Paragraph>
        <Text
          strong
          style={{
            fontSize: 16,
          }}
        >
          The content you submitted has the following error:
        </Text>
      </Paragraph>
      <Paragraph>
        <CloseCircleOutlined className="site-result-demo-error-icon" /> Your account has been
        frozen. <a>Thaw immediately &gt;</a>
      </Paragraph>
      <Paragraph>
        <CloseCircleOutlined className="site-result-demo-error-icon" /> Your account is not yet
        eligible to apply. <a>Apply Unlock &gt;</a>
      </Paragraph>
    </div>
  </Result>
);

export default App;
.site-result-demo-error-icon {
  color: red;
}
Great, we have done all the operations!

自定义 icon。

expand codeexpand code
import { SmileOutlined } from '@ant-design/icons';
import { Button, Result } from 'antd';
import React from 'react';

const App: React.FC = () => (
  <Result
    icon={<SmileOutlined />}
    title="Great, we have done all the operations!"
    extra={<Button type="primary">Next</Button>}
  />
);

export default App;

API#

参数说明类型默认值
extra操作区ReactNode-
icon自定义 iconReactNode-
status结果的状态,决定图标和颜色success | error | info | warning | 404 | 403 | 500info
subTitlesubTitle 文字ReactNode-
titletitle 文字ReactNode-
Progress进度条Skeleton骨架屏