toPay(){//支付 console.log(util.formatTime(new Date)) wx.cloud.database().collection('shop').add({ // data:{ name:this.data.name, phone:this.data.phone, address:this.data.address, totalpay:this.data.sum, // orderId:this.data.orderId, product:this.data.orderList,//是一个数组,也是一个对象 time:util. formatTime(new Date), note:this.data.note, status:-1,//代表发货状态 // -1 用户自动取消 // 0 待发货 // 1 已发货 // 2 已评价 } }).then(res=>{ console.log(res._id) let orderId=res._id this.setData({ orderId:orderId//创建订单成功 }) this.xuniPay()//虚拟支付 }) },解释
时间: 2024-02-15 13:27:01 浏览: 104
这是一段小程序中的支付函数代码,主要实现以下功能:
1.使用console.log输出当前时间,即util.formatTime(new Date)。
2.在云数据库的shop集合中添加一条记录,记录包括购买者的姓名、电话、地址、总支付金额、订单中的商品列表、下单时间、备注和发货状态。
3.在添加记录成功后,将订单的ID保存到小程序页面的数据中,并调用xuniPay函数进行虚拟支付。
其中,云数据库是腾讯云提供的一种基于云端的NoSQL数据库服务,可以方便地进行数据的存储和管理。虚拟支付是指在小程序中模拟支付的过程,不涉及真实的资金交易。
相关问题
opendLocation(event){ var that = this; wx.openLocation({ latitude: that.data.action.latitude, longitude: that.data.action.longitude, }) }, previewImg(event){ var that = this; console.log(event) wx.previewImage({ current: event.currentTarget.dataset.src,//当前显示图片的路径 urls: that.data.action.images, }) }, onLoad: function (options) { this.setData({ openid : app.globalData.openid }) console.log(options.id) this.data.id = options.id this.getDetail() }, getDetail(){ var that = this; wx.cloud.database().collection('shop_actions').doc(this.data.id).get({ success(res){ console.log(res) var action = res.data action.time = util.formatTime(new Date(action.time)) for(var l in action.prizeList){ if(action.prizeList[l].openid == app.globalData.openid){ action.isPrized = true } } for(var l in action.commentList){ action.commentList[l].time = util.formatTime(new Date(action.commentList[l].time)) } that.setData({ action: res.data }) } }) }, delete(){ console.log(this.data.id) var that = this; wx.cloud.database().collection('shop_actions').doc(this.data.id).remove({ success(res){ console.log(res) wx.navigateBack({ success(res){ wx.showToast({ title: '删除成功!', }) } }) } }) }, pirzeAction(event){ var that = this; if(app.globalData.userInfo == null){ wx.switchTab({ url: '/pages/me/me', success(){ wx.showToast({ icon:'error', title: '请登录', }) } }) }else { console.log(that.data.id) var that = this; wx.cloud.database().collection('shop_actions').doc(that.data.id).get({ success(res){ console.log(res) var action = res.data var tag = false var index for(var l in action.prizeList){ if(action.prizeList[l].openid == app.globalData.openid){ tag = true index = l break } }
这段代码是小程序中的一些功能实现,包括打开地理位置、预览图片、加载页面、删除操作、奖励操作等。其中用到了微信小程序提供的API函数,如wx.openLocation()、wx.previewImage()、wx.cloud.database()等。同时,在获取数据时使用了异步回调函数success()来处理返回的数据。
阅读全文