onLoad() { let that = this wx.getStorage({ key: 'Userinfo', success(res) { //console.log(res.data) //userinfo } }) //console.log(util.formatTime(new Date())); //this.get_DBinf(); //this.navbarTap(); this.get_Sell_DBinf(); }, wanttobuy: function (e) { var that = this var buyind = e.currentTarget.dataset.buyindex //console.log("buyind:" + buyind); const buypostopenid = e.currentTarget.dataset.buypostopenid
时间: 2024-03-04 10:52:40 浏览: 114
怎么理解wx.navigateTo的events参数使用详情
在 `onLoad` 函数中,通过 `wx.getStorage` API 获取本地缓存中的 `Userinfo` 数据。同时调用了 `get_Sell_DBinf` 函数,加载了交易市场的数据。在 `wanttobuy` 函数中,通过点击事件获取了对应的购买信息的索引和卖家的 openid。但是这些代码片段并没有展示展示、点赞、评论功能的实现,您能否提供相关的代码片段供我参考?
阅读全文