2015-08-04 17:41:12 +08:00
|
|
|
# 自动关闭的延时
|
2015-08-03 15:17:12 +08:00
|
|
|
|
|
|
|
- order: 1
|
|
|
|
|
2015-08-29 13:02:37 +08:00
|
|
|
自定义通知框自动关闭的延时,默认`4.5s`,取消自动关闭只要将该值设为 `0` 即可。
|
2015-08-03 15:17:12 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Button, notification } from 'antd';
|
2015-08-03 15:17:12 +08:00
|
|
|
|
2016-01-27 16:53:05 +08:00
|
|
|
const openNotification = function () {
|
2015-10-28 20:55:49 +08:00
|
|
|
const args = {
|
2015-11-25 17:35:49 +08:00
|
|
|
message: '这是标题',
|
|
|
|
description: '我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭',
|
2015-11-04 18:07:10 +08:00
|
|
|
duration: 0
|
2015-08-03 15:17:12 +08:00
|
|
|
};
|
|
|
|
notification.open(args);
|
|
|
|
};
|
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2015-10-08 15:13:04 +08:00
|
|
|
<Button type="primary" onClick={openNotification}>打开通知提醒框</Button>
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-08-04 15:16:10 +08:00
|
|
|
````
|