mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
6b658dab76
* feat: switch visible to open for Tooltip & Popover & Popconfirm * fix lint * fix: merge state * chore: Update ts part * test: add legacy test * test: fix test case Co-authored-by: 二货机器人 <smith3816@gmail.com>
777 B
777 B
order | version | title | ||||
---|---|---|---|---|---|---|
7 | 4.17.0 |
|
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';
import React from 'react';
const App: React.FC = () => {
const confirm = () =>
new Promise(resolve => {
setTimeout(() => resolve(null), 3000);
});
return (
<Popconfirm title="Title" onConfirm={confirm} onOpenChange={() => console.log('open change')}>
<Button type="primary">Open Popconfirm with Promise</Button>
</Popconfirm>
);
};
export default App;