微信小程序
文章平均质量分 53
微信小程序的学习和分享
QAEARQ
坚持自我,不断前行
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
微信小程序的总结
微信小程序和Vue的思想极其相似,可以相互比较学习本地存储数据:var userName = wx.setStorageSync('username', 'root');//在本地存储username的值rootvar userName = wx.getStorageSync('userName');//获取本地username的值wx.removeStorageSync('username');...原创 2018-04-23 20:57:15 · 477 阅读 · 1 评论 -
关于微信小程序支付的记录
一.微信小程序支付首先通过微信的登陆接口获取临时codewx.login({ success: res => { console.log(res.code) }})2.通过微信的auth.code2Session接口传入login获取的code交换用户的openId wx.login({ success: res => { // 发送 res.code 到后台换取 openId, sessi原创 2020-07-01 14:08:54 · 1245 阅读 · 1 评论
分享