ant-design/components/message/demo/loading.md

42 lines
775 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-07-04 10:44:55 +08:00
title:
zh-CN: 加载中
2019-04-19 22:35:06 +08:00
en-US: Message with loading indicator
2016-03-31 09:40:55 +08:00
---
2015-09-07 12:27:09 +08:00
2016-07-04 10:44:55 +08:00
## zh-CN
2015-09-07 12:27:09 +08:00
进行全局 loading异步自行移除。
2016-07-04 10:44:55 +08:00
## en-US
Display a global loading indicator, which is dismissed by itself asynchronously.
```tsx
2022-05-21 22:14:15 +08:00
import { Button, message } from 'antd';
import React from 'react';
2015-09-07 12:27:09 +08:00
const App: React.FC = () => {
const [messageApi, contextHolder] = message.useMessage();
const success = () => {
messageApi.open({
type: 'loading',
content: 'Action in progress..',
duration: 0,
});
// Dismiss manually and asynchronously
setTimeout(messageApi.destroy, 2500);
};
return (
<>
{contextHolder}
<Button onClick={success}>Display a loading indicator</Button>
</>
);
2015-09-07 12:27:09 +08:00
};
export default App;
2019-05-07 14:57:32 +08:00
```