這篇文章主要介紹微信小程序中如何進(jìn)行刪除處理操作,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
專業(yè)公司可以根據(jù)自己的需求進(jìn)行定制,成都網(wǎng)站建設(shè)、做網(wǎng)站構(gòu)思過(guò)程中功能建設(shè)理應(yīng)排到主要部位公司成都網(wǎng)站建設(shè)、做網(wǎng)站的運(yùn)用實(shí)際效果公司網(wǎng)站制作網(wǎng)站建立與制做的實(shí)際意義
沒(méi)有 confrim 那怎么實(shí)現(xiàn)這個(gè)效果呢?
可以使用小程序里的模態(tài)框
代碼:
wxml:
刪除
js:
del:function(e){ var that = this; wx.showModal({ title: '提示', content: '確定要?jiǎng)h除嗎?', success: function (sm) { if (sm.confirm) { // 用戶點(diǎn)擊了確定 可以調(diào)用刪除方法了 wx.request({ url: 'https://m.*****.com/index.php/Home/Xiaoxxf/home_comment_del?c_id=' + e.currentTarget.dataset.cid, //刪除房間評(píng)論 data: '', header: { 'Content-Type': 'application/json' }, method: 'GET', success: function (res) { console.log(res); wx.showToast({ title: res.data, //數(shù)據(jù)返回提示,查看后臺(tái)PHP icon: 'success', duration: 2000 }) /* 獲取房間評(píng)論信息 -xzz 0714*/ getList(that); }, fail: function (res) { }, complete: function (res) { }, }) } else if (sm.cancel) { } } }) }
效果:
這樣就實(shí)現(xiàn)js的confirm效果了。
以上是“微信小程序中如何進(jìn)行刪除處理操作”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!