mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
5ddd9e6b97
* feat(module:popconfirm): support closing based on promise fix: typos fix: fix tests fix: fix ActionButton for Popconfirm * chore: cleanup * test: add test
766 B
766 B
order | title | ||||
---|---|---|---|---|---|
7 |
|
zh-CN
点击确定后异步关闭 Popconfirm,例如提交表单。
en-US
Asynchronously close a popconfirm when the OK button is pressed. For example, you can use this pattern when you submit a form.
import { Button, Popconfirm } from 'antd';
const App = () => {
const confirm = () =>
new Promise(resolve => {
setTimeout(() => resolve(), 3000);
});
return (
<Popconfirm
title="Title"
onConfirm={confirm}
onVisibleChange={() => console.log('visible change')}
>
<Button type="primary">Open Popconfirm with Promise</Button>
</Popconfirm>
);
};
ReactDOM.render(<App />, mountNode);