我正在使用react-popup。我希望底部的按钮之一在弹出窗口内调用函数。我似乎在文档中找不到该功能。
我的弹出窗口中有一个表单。我想在该组件中调用handleSubmit函数。按照我下面的方法行不通。
const createMyPopup = expert => {
Popup.create({
title: null,
content: <MyPopup expert={expert} />,
noOverlay: false,
buttons: {
right: [
{
text: 'UPDATE',
className: 'one-btn-confirm',
action: popup => {
popup.handleSubmit();
}
}
]
}
});
};