这篇文章主要介绍微信小程序中如何进行删除处理操作,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
没有 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效果了。
以上是“微信小程序中如何进行删除处理操作”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。