위 챗 애플 릿 삭제 처리 상세 설명

confrim 이 없 으 면 어떻게 이 효 과 를 실현 합 니까?
애플 릿 의 모드 상 자 를 사용 할 수 있 습 니 다.
코드:
wxml:

<a class="reply" wx:if="{{comment.uid==comment.login_uid}}" bindtap="del" data-cid="{{comment.c_id}}">  </a>
js:

 del:function(e){
  var that = this;
  wx.showModal({
  title: '  ',
  content: '      ?',
  success: function (sm) {
   if (sm.confirm) {
   //                  
   wx.request({
    url: 'https://m.*****.com/index.php/Home/Xiaoxxf/home_comment_del?c_id=' + e.currentTarget.dataset.cid, //      
    data: '',
    header: {
    'Content-Type': 'application/json'
    },
    method: 'GET',
    success: function (res) {
    console.log(res);
    wx.showToast({
     title: res.data, //      ,    PHP
     icon: 'success',
     duration: 2000
    })
    /*          -xzz 0714*/
    getList(that);
    },
    fail: function (res) { },
    complete: function (res) { },
   })
   } else if (sm.cancel) {
   }
  }
  })
 }
효과:
이렇게 하면 js 의 confirm 효 과 를 실현 할 수 있다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기