微信小程序开发之实现页面点赞功能并记录点赞数
微信小程序开发之实现页面点赞功能并记录点赞数
微信小程序开发之实现页面点赞功能并记录点赞数
<view bindtap="zan"><text>给我点赞</text></view>
//点赞 zan: function(t) { request({ url: "addZan",//程序记录数据 data: { id: g.data.id }, showLoading: !1, success: function(e) { if (e) return g.setData({ is_zan: t }), void add(g.data, "zan_num"); wx.showToast({ icon: "none", title: "成功" }); } }); },
本文属原创,转载请注明原文:http://www.zhimatong.com/jiaocheng/802.html
为保证教程的实用性及扩大知识面覆盖,如果您有相似问题而未解决,可联系在线客服免费技术支持。
点赞 19