视图页面:

<a href="javascript:void(0)" onclick="disConnect()">Disconnect</a>

js代码:

/**
 * 断开钱包
 */
function disConnect() {
  if(confirm('确认退出吗')) {
    if (!window.ethereum || !window.ethereum.isMetaMask) {
      alert('Please install MetaMask')
      return
    }
    $.ajax({
     url: '/front_ends/the_sign_out',
     type: 'GET',
     success: function(response) {
       alert("您已成功退出。")
       location.href = '/'
     }
    });
  }
}

点击退出,弹出确认与取消按钮进行确定