如何在微信小程序app.js增加一个判断系统时间有没有被篡改的函数,如果系统时间被篡改就不允许运行,并弹窗提示,系统时间被篡改,如果系统时间正常,就允许运行小程序,按照这个功能写一个完整的函数代码
时间: 2023-09-29 13:09:42 浏览: 94
基于JavaScript的微信小程序商城购物系统源码.zip
可以使用小程序提供的API `wx.checkIsSupportSoterAuthentication`来判断系统时间是否被篡改。如果返回结果为`false`,则说明系统时间被篡改,否则说明系统时间正常。
下面是一个示例代码:
```javascript
function checkSystemTime() {
wx.checkIsSupportSoterAuthentication({
success(res) {
if (res.supportMode.indexOf('fingerPrint') !== -1) {
wx.checkIsSoterEnrolledInDevice({
checkAuthMode: 'fingerPrint',
success(res) {
if (!res.isEnrolled) {
wx.showToast({
title: '您还没有录入指纹,请先录入指纹',
icon: 'none'
})
} else if (res.isEnrolled && res.errMsg === 'checkIsSoterEnrolledInDevice:ok') {
const date = new Date()
const now = date.getTime()
if (Math.abs(now - Date.now()) > 300000) {
wx.showToast({
title: '系统时间被篡改,请校准时间',
icon: 'none'
})
return false
}
return true
} else {
wx.showToast({
title: '检测失败,请重试',
icon: 'none'
})
}
},
fail() {
wx.showToast({
title: '检测失败,请重试',
icon: 'none'
})
}
})
}
},
fail() {
wx.showToast({
title: '检测失败,请重试',
icon: 'none'
})
}
})
}
```
在判断系统时间之前,需要先调用`wx.checkIsSupportSoterAuthentication`方法判断当前设备是否支持生物认证,如果支持,则再调用`wx.checkIsSoterEnrolledInDevice`方法检测是否已经录入指纹,如果未录入指纹,则弹出提示框提示用户先录入指纹。如果已经录入指纹,则计算当前时间与系统时间的差值,如果差值超过5分钟,则认为系统时间被篡改,弹出提示框提示用户校准时间。如果差值不超过5分钟,则认为系统时间正常,返回`true`。
使用该函数时,可以在小程序的`app.js`文件中调用`checkSystemTime()`函数,并根据返回结果进行相应的处理。例如:
```javascript
App({
onLaunch: function () {
const isSystemTimeValid = checkSystemTime()
if (!isSystemTimeValid) {
// 系统时间被篡改,不允许运行小程序
return
}
// 系统时间正常,允许运行小程序
// ...
}
})
```
阅读全文