forked from hackathonweekly/WeeklyZen-WinXin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
45 lines (41 loc) · 1.16 KB
/
Copy pathapp.js
File metadata and controls
45 lines (41 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// app.js
App({
onLaunch: function () {
// 自动绑定小程序 OpenID(用于支付)
this.bindMiniProgramOpenId()
},
bindMiniProgramOpenId: function () {
// 从 storage 读取上次绑定的时间戳,避免频繁绑定
const lastBindTime = wx.getStorageSync("miniOpenIdBindTime") || 0
const now = Date.now()
// 24小时内不重复绑定
if (now - lastBindTime < 24 * 60 * 60 * 1000) {
return
}
wx.login({
success: (res) => {
if (!res.code) {
console.warn("wx.login failed, cannot bind mini OpenID")
return
}
// 从 WebView URL 中提取 session token
// 由于小程序启动时 WebView 还没加载,我们先存储 code,等 WebView 加载后再绑定
this.globalData.loginCode = res.code
this.globalData.loginCodeTime = now
},
fail: (err) => {
console.warn("wx.login failed:", err)
}
})
},
globalData: {
// 全局数据
version: "1.3.0",
bridgeVersion: "1.3.0",
webViewUrl: "https://hackathonweekly.com/",
buildTime: "2026-02-27",
description: "HackathonWeekly 微信小程序 - 发现最新黑客松活动",
loginCode: null, // 存储 wx.login 的 code
loginCodeTime: 0
}
})