|
|
|
---
|
|
|
|
order: 2
|
|
|
|
title:
|
|
|
|
zh-CN: 修改延时
|
|
|
|
en-US: Customize duration
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
自定义时长 `10s`,默认时长为 `3s`。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Customize message display duration from default `3s` to `10s`.
|
|
|
|
|
|
|
|
```tsx
|
|
|
|
import { Button, message } from 'antd';
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
const App: React.FC = () => {
|
|
|
|
const [messageApi, contextHolder] = message.useMessage();
|
|
|
|
|
|
|
|
const success = () => {
|
|
|
|
messageApi.open({
|
|
|
|
type: 'success',
|
|
|
|
content: 'This is a prompt message for success, and it will disappear in 10 seconds',
|
|
|
|
duration: 10,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{contextHolder}
|
|
|
|
<Button onClick={success}>Customized display duration</Button>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default App;
|
|
|
|
```
|