2016-03-31 09:40:55 +08:00
|
|
|
|
---
|
|
|
|
|
order: 0
|
2016-08-28 17:45:27 +08:00
|
|
|
|
title:
|
2016-08-17 11:07:02 +08:00
|
|
|
|
zh-CN: 基本
|
|
|
|
|
en-US: Basic
|
2016-03-31 09:40:55 +08:00
|
|
|
|
---
|
2015-07-28 15:40:28 +08:00
|
|
|
|
|
2016-08-17 11:07:02 +08:00
|
|
|
|
## zh-CN
|
|
|
|
|
|
2016-05-19 20:40:47 +08:00
|
|
|
|
最简单的用法,4.5 秒后自动关闭。
|
2015-07-28 15:40:28 +08:00
|
|
|
|
|
2016-08-17 11:07:02 +08:00
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
|
|
The simplest usage that close the notification box after 4.5s.
|
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
|
import { Button, notification } from 'antd';
|
2015-07-28 15:40:28 +08:00
|
|
|
|
|
2016-12-14 17:57:15 +08:00
|
|
|
|
const openNotification = () => {
|
2015-08-06 15:19:45 +08:00
|
|
|
|
notification.open({
|
2016-08-28 17:45:27 +08:00
|
|
|
|
message: 'Notification Title',
|
|
|
|
|
description: 'This is the content of the notification. This is the content of the notification. This is the content of the notification.',
|
2018-10-18 10:16:56 +08:00
|
|
|
|
onClick: () => {
|
|
|
|
|
console.log('Notification Clicked!');
|
|
|
|
|
},
|
2015-08-06 15:19:45 +08:00
|
|
|
|
});
|
2015-07-30 21:04:52 +08:00
|
|
|
|
};
|
2015-07-28 15:40:28 +08:00
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
|
ReactDOM.render(
|
2018-06-27 15:55:04 +08:00
|
|
|
|
<Button type="primary" onClick={openNotification}>Open the notification box</Button>,
|
2018-11-28 15:00:03 +08:00
|
|
|
|
mountNode
|
|
|
|
|
);
|
2015-08-06 15:19:45 +08:00
|
|
|
|
````
|