文件名称:微信小程序—支付功能
文件大小:36KB
文件格式:PDF
更新时间:2024-04-18 15:16:32
微信,小,程序,—,支付,功能,微信,小,程序,
微信小程序—支付功能 只提供微信小程序端代码 var app = getApp(); Page({ data: {}, onLoad: function (options) { // 页面初始化 options为页面跳转所带来的参数 var that = this //登陆获取code wx.login({ success: function (res) { console.log(res.code) //获取openid that.getOpenId(res.code) } }); }, getOpenId: function (code) { var that = this