mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
7f2159e928
* eslint disallow use of chained assignment expressions eslint disallow use of chained assignment expressions * revert * message-doc-update 1.If a variable is never reassigned, using the const declaration is better. 2.Defaultvalue’s type must be ‘number’ depend on type
1.5 KiB
1.5 KiB
category | subtitle | type | noinstant | title |
---|---|---|---|---|
Components | 全局提示 | Feedback | true | Message |
全局展示操作反馈信息。
何时使用
- 可提供成功、警告和错误等反馈信息。
- 顶部居中显示并自动消失,是一种不打断用户操作的轻量级提示方式。
API
组件提供了一些静态方法,使用方式和参数如下:
message.success(content, [duration], onClose)
message.error(content, [duration], onClose)
message.info(content, [duration], onClose)
message.warning(content, [duration], onClose)
message.warn(content, [duration], onClose)
// alias of warningmessage.loading(content, [duration], onClose)
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
content | 提示内容 | string|ReactNode | - |
duration | 自动关闭的延时,单位秒。设为 0 时不自动关闭。 | number | 3 |
onClose | 关闭时触发的回调函数 | Function | - |
还提供了全局配置和全局销毁方法:
message.config(options)
message.destroy()
message.config
message.config({
top: 100,
duration: 2,
maxCount: 3,
});
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
duration | 默认自动关闭延时,单位秒 | number | 3 |
getContainer | 配置渲染节点的输出位置 | () => HTMLElement | () => document.body |
top | 消息距离顶部的位置 | number | 24 |
maxCount | 最大显示数, 超过限制时,最早的消息会被自动关闭 | number | - |