ant-design/components/message/index.md

48 lines
1.3 KiB
Markdown
Raw Normal View History

2015-06-15 22:01:39 +08:00
# Message
- category: Components
- chinese: 全局提示
2015-08-22 20:16:24 +08:00
- type: 展示
2015-11-06 14:11:47 +08:00
- noinstant: true
2015-06-15 22:01:39 +08:00
---
2015-06-26 14:42:30 +08:00
全局展示操作反馈信息。
2015-06-17 20:24:42 +08:00
2015-06-26 14:42:30 +08:00
## 何时使用
2015-06-17 20:24:42 +08:00
2015-06-26 14:42:30 +08:00
- 可提供成功、警告和错误等反馈信息。
- 顶部居中显示并自动消失,是一种不打断用户操作的轻量级提示方式。
2015-07-11 18:00:58 +08:00
## API
- `message.success(content, duration)`
- `message.error(content, duration)`
- `message.info(content, duration)`
2015-09-07 12:27:09 +08:00
- `message.loading(content, duration)`
2015-07-11 18:00:58 +08:00
组件提供了四个静态方法,参数如下:
2015-07-11 18:00:58 +08:00
| 参数 | 说明 | 类型 | 默认值 |
|------------|----------------|----------------------------|--------------|
| content | 提示内容 | React.Element or String | 无 |
| duration | 自动关闭的延时,单位秒 | number | 1.5 |
2015-07-30 11:47:46 +08:00
还提供了全局配置和全局销毁方法:
2015-07-30 11:47:46 +08:00
- `message.config(options)`
- `message.destroy()`
2015-07-30 11:47:46 +08:00
```js
message.config({
top: 100,
duration: 2,
2015-07-30 11:47:46 +08:00
});
```
| 参数 | 说明 | 类型 | 默认值 |
|------------|--------------------|----------------------------|--------------|
| top | 消息距离顶部的位置 | Number | 24px |
| duration | 默认自动关闭延时,单位秒 | Number | 1.5 |