前言

本教程是基于 “apifm-wxapi” 模块,教你快速实现小程序开发,所以你可能需要先了解以下知识点:

《创建 HelloWorld 项目》
《使用 “apifm-wxapi” 快速开发小程序》
《免费注册开通后台,获得专属域名》

本案例中,“点击抽奖” 功能,需要用户登录后才能操作,也就是说需要 token 授权,请先了解:

《微信小程序登录获取openid及三方token》

启用“抽奖模块”

登录 “第一步” 注册的后台,左侧菜单 —> 工厂设置 —> 模块管理

找到 “抽奖模块”,点击 “启用模块” ,然后 F5 刷新一下后台界面,你将可以看到新的菜单:“营销复制” —> “抽奖设置 + 抽奖记录” ;

你需要先在后台发布一个新的抽奖设置项目:

抽奖例子 - 图1

小程序开发:

接口返回的时候没有做界面上的渲染,统一在 console 输出,你可以尝试着将结果数据在界面上进行渲染

效果截图

抽奖例子 - 图2

js文件

  1. const WXAPI = require('apifm-wxapi')
  2. WXAPI.init('gooking')
  3. const luckyInfoId = 165 // 后台抽奖设置里面的项目ID
  4. Page({
  5. data: {
  6. uid: undefined,
  7. openid: undefined,
  8. token: undefined
  9. },
  10. onLoad: function (options) {
  11. },
  12. onShow: function () {
  13. },
  14. goRegist(){
  15. wx.navigateTo({
  16. url: '/pages/register/index'
  17. })
  18. },
  19. goLogin(){
  20. const _this = this
  21. wx.login({
  22. success: function (res) {
  23. const code = res.code; // 微信登录接口返回的 code 参数,下面登录接口需要用到
  24. WXAPI.login_wx(code).then(function (res) {
  25. // 登录接口返回结果
  26. console.log(res)
  27. if (res.code == 10000) {
  28. wx.showToast({
  29. title: '请先注册',
  30. icon: 'none'
  31. })
  32. } else if (res.code == 0) {
  33. wx.showToast({
  34. title: '登录成功',
  35. icon: 'success'
  36. })
  37. _this.setData(res.data)
  38. } else {
  39. wx.showToast({
  40. title: res.msg,
  41. icon: 'none'
  42. })
  43. }
  44. })
  45. }
  46. })
  47. },
  48. luckyInfo(){
  49. WXAPI.luckyInfo(luckyInfoId).then(res => {
  50. console.log(res)
  51. if (res.code == 700) {
  52. wx.showToast({
  53. title: '抽奖项目ID错误',
  54. icon: 'none'
  55. })
  56. } else if (res.code == 0) {
  57. wx.showToast({
  58. title: '读取成功',
  59. icon: 'success'
  60. })
  61. }
  62. })
  63. },
  64. luckyInfoJoinMy(){
  65. if (!this.data.token) {
  66. wx.showToast({
  67. title: '请先登录',
  68. icon: 'none'
  69. })
  70. return
  71. }
  72. WXAPI.luckyInfoJoinMy(luckyInfoId, this.data.token).then(res => {
  73. console.log(res)
  74. if (res.code == 700) {
  75. wx.showToast({
  76. title: '你还未参与',
  77. icon: 'none'
  78. })
  79. } else if (res.code == 0) {
  80. wx.showToast({
  81. title: '读取成功',
  82. icon: 'success'
  83. })
  84. }
  85. })
  86. },
  87. luckyInfoJoin(){
  88. if (!this.data.token) {
  89. wx.showToast({
  90. title: '请先登录',
  91. icon: 'none'
  92. })
  93. return
  94. }
  95. WXAPI.luckyInfoJoin(luckyInfoId, this.data.token).then(res => {
  96. console.log(res)
  97. if (res.code == 0) {
  98. wx.showToast({
  99. title: '参与成功',
  100. icon: 'success'
  101. })
  102. } else {
  103. wx.showToast({
  104. title: res.msg,
  105. icon: 'none'
  106. })
  107. }
  108. })
  109. },
  110. luckyInfoJoinLogs(){
  111. WXAPI.luckyInfoJoinLogs({
  112. lid: luckyInfoId
  113. }).then(res => {
  114. console.log(res)
  115. if (res.code == 0) {
  116. wx.showToast({
  117. title: '读取成功',
  118. icon: 'success'
  119. })
  120. } else {
  121. wx.showToast({
  122. title: res.msg,
  123. icon: 'none'
  124. })
  125. }
  126. })
  127. }
  128. })

wxss 文件

  1. button {
  2. width:600rpx;
  3. margin-top:50rpx;
  4. }

wxml 文件

  1. <button type="primary" bindtap="goRegist"> 注册新用户 </button>
  2. <button type="primary" bindtap="goLogin"> 登录获取token </button>
  3. <button type="warn" bindtap="luckyInfo"> 获取投票项目详情 </button>
  4. <button type="warn" bindtap="luckyInfoJoinMy"> 我的抽奖 </button>
  5. <button type="warn" bindtap="luckyInfoJoin"> 参与抽奖 </button>
  6. <button type="warn" bindtap="luckyInfoJoinLogs"> 拉取所有的抽奖记录 </button>

WXAPI.init(‘gooking’) 这句代码是将你的小程序链接到你的后台,其中 gooking 这个是你的专属域名(请查看前言中关于专属域名的章节说明);

至此,你已经掌握了如何开发一个基于小程序的抽奖功能

使用上述的 “apifm-wxapi” 方法,试着去制作一个精美的抽奖小程序吧!

期待你的进步!
感谢!