2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 1
|
2016-07-04 10:44:55 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 其他提示类型
|
|
|
|
en-US: Other types of message
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-12-10 16:41:41 +08:00
|
|
|
|
2016-07-04 10:44:55 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-12-10 16:41:41 +08:00
|
|
|
包括成功、失败、警告。
|
|
|
|
|
2016-07-04 10:44:55 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Messages of success, error and warning types.
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2015-12-10 16:41:41 +08:00
|
|
|
import { message, Button } from 'antd';
|
|
|
|
|
2017-03-19 01:14:44 +08:00
|
|
|
const success = () => {
|
2016-07-04 10:44:55 +08:00
|
|
|
message.success('This is a message of success');
|
2015-12-10 16:41:41 +08:00
|
|
|
};
|
|
|
|
|
2017-03-19 01:14:44 +08:00
|
|
|
const error = () => {
|
2016-07-04 10:44:55 +08:00
|
|
|
message.error('This is a message of error');
|
2015-12-10 16:41:41 +08:00
|
|
|
};
|
|
|
|
|
2017-03-19 01:14:44 +08:00
|
|
|
const warning = () => {
|
2016-07-04 10:44:55 +08:00
|
|
|
message.warning('This is message of warning');
|
2015-12-10 16:41:41 +08:00
|
|
|
};
|
|
|
|
|
2017-03-19 01:14:44 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Button onClick={success}>Success</Button>
|
|
|
|
<Button onClick={error}>Error</Button>
|
|
|
|
<Button onClick={warning}>Warning</Button>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
2015-12-10 16:41:41 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
#components-message-demo-other .ant-btn {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
</style>
|