繁体   English   中英

如何使用ReactJS在单击删除按钮上创建弹出窗口?

[英]How to create a popup on click delete button with ReactJS?

我想要单击按钮删除时,它会弹出一个确认对话框。 我尝试使用sweetAlert ,但未显示任何弹出窗口。

popupdel方法:

 popupdel() {
    swal({
      title: "Are you sure?",
      text: "Your will not be able to recover this imaginary file!",
      type: "warning",
      showCancelButton: true,
      confirmButtonClass: "btn-danger",
      confirmButtonText: "Yes, delete it!",
      closeOnConfirm: false
    }, function() {
      swal("Deleted!", "Your imaginary file has been deleted.", "success");
    });
  }

删除方法:

delete(Code) {

axios.delete('http://localhost:4000/app/deleteclient/' + Code).then(function(clients) {

this.setState({ clients: clients.records });

}.bind(this));

}

<button style={btn} onClick={(Code) => this.delete(client.Code)} type="button"><i class="fa fa-trash-o"></i></button>

如何使弹出窗口显示在单击按钮上?

就在上周,我为SweetAlert2创建了自己的React包装器组件。 (NPM上已经有一些包装器类,但是我不喜欢它们的工作方式,所以我制作了自己的包装器。)以下链接是这两个功能齐全的示例:A)我的SweetAlert2的包装器组件,以及B)基于用户输入启动警报的两种不同方式。

https://stackblitz.com/edit/react-sweetalert2-wrapper

链接的示例显示了如何声明式启动警报(例如,在render()函数中拼出JSX代码,然后切换状态中的show变量)或强制性地(例如,在render()为警报留一个占位符render()函数,该函数将使用null或新生成的警报的内容动态填充)。

如果我了解您要实现的目标:

  1. 您可以为正在显示或不显示的弹出窗口创建某种状态。 这将是一个布尔值。
  2. 将初始状态设置为false。
  3. 创建一个方法,当您单击按钮时,它将状态切换为true。
  4. 状态为true时,显示弹出窗口。

然后根据您的应用程序结构将方法传递给您的按钮。

class Example extends React.Component {
  constructor() {
      super();
      this.state = {
          isPopupShown: false
      }

     this.togglePopup = this.togglePopup.bind(this);
  }


  togglePopup() {
    this.setState(prevState => ({
      isPopupShown: !prevState.isPopupShown
    }));
  }

  render() {
    return (
      <div>
        <button onClick={ this.togglePopup }>
          toggle popup
        </button>
        { this.state.isPopupShown === true ? <div>popup shown!</div> : <div>popup hidden!</div> }
      </div>
    )
  }
}

ReactDOM.render(<Example />, document.querySelector("#app"))

这是一个显示如何切换内容的jsfiddle: http : //jsfiddle.net/n5u2wwjg/100862/

使用确认而不是警报或sweetAlert:

delete(Code) {
    if( confirm('Sure want to delete?')) {
        axios.delete('http://localhost:4000/app/deleteclient/' + Code).then(function(clients) {

    this.setState({ clients: clients.records });
)}

else {
        // Do something..
    } }.bind(this));

    <button style={btn} onClick={(Code) => this.delete(client.Code)} type="button"><i class="fa fa-trash-o"></i></button>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM