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.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2022-05-21 22:14:15 +08:00
|
|
|
import { Button, message, Space } from 'antd';
|
2022-05-19 09:46:26 +08:00
|
|
|
import React from 'react';
|
2015-12-10 16:41:41 +08:00
|
|
|
|
2022-05-26 09:53:08 +08:00
|
|
|
const App: React.FC = () => {
|
|
|
|
const [messageApi, contextHolder] = message.useMessage();
|
|
|
|
|
|
|
|
const success = () => {
|
|
|
|
messageApi.open({
|
|
|
|
type: 'success',
|
|
|
|
content: 'This is a success message',
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const error = () => {
|
|
|
|
messageApi.open({
|
|
|
|
type: 'error',
|
|
|
|
content: 'This is an error message',
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const warning = () => {
|
|
|
|
messageApi.open({
|
|
|
|
type: 'warning',
|
|
|
|
content: 'This is a warning message',
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{contextHolder}
|
|
|
|
<Space>
|
|
|
|
<Button onClick={success}>Success</Button>
|
|
|
|
<Button onClick={error}>Error</Button>
|
|
|
|
<Button onClick={warning}>Warning</Button>
|
|
|
|
</Space>
|
|
|
|
</>
|
|
|
|
);
|
2015-12-10 16:41:41 +08:00
|
|
|
};
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|