React.js 确认模式

fal*_*lcs 5 javascript frontend modal-dialog reactjs

我想知道是否有人知道在react.js 中创建删除(确认)模式的最简单方法?我一直在尝试一些事情,但无法理解它。

单击时,该模式需要从垃圾箱图标中弹出。我完全是一个反应初学者,所以我很挣扎。

cod*_*er1 2

您可以使用这个 npm 包。https://github.com/gregthebusker/react-confirm-bootstrap

一旦你安装了它,你就可以在你的项目中使用它了。

<ConfirmationModal
    onConfirm={this.onConfirm}
    body="Are you sure?"
    confirmText="Yes"
    cancelText="No"
    title="Delete confirmation">
    <Button>Button Text</Button>
</ConfirmationModal>
Run Code Online (Sandbox Code Playgroud)

我一直在我的项目中使用这个包并进行了一些修改。但默认包应该足以满足您的用例。