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

27 lines
530 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.
2019-05-07 14:57:32 +08:00
```jsx
import { message, Button } from 'antd';
2015-09-07 12:27:09 +08:00
2016-07-21 18:05:15 +08:00
const success = () => {
2016-07-21 21:19:37 +08:00
const hide = message.loading('Action in progress..', 0);
2016-07-04 10:44:55 +08:00
// Dismiss manually and asynchronously
2015-09-07 12:27:09 +08:00
setTimeout(hide, 2500);
};
2019-05-07 14:57:32 +08:00
ReactDOM.render(<Button onClick={success}>Display a loading indicator</Button>, mountNode);
```