// 获取当前app的版本
const systemInfo = uni.getSystemInfoSync();
// 应用程序版本号
// 条件编译,只在APP渲染
// #ifdef APP
this.version_number = systemInfo.appWgtVersion;
// #endif
// 获取当前app的版本
const systemInfo = uni.getSystemInfoSync();
// 应用程序版本号
// 条件编译,只在H5渲染
// #ifdef H5
this.version_number = systemInfo.appVersion;
console.log(systemInfo.appVersion,'版本号');
// #endif
只能在手机模式下才可以打印 , h5 预览模式获取不到的 !!!
console.log(plus.runtime.version, '版本号')
this.version = plus.runtime.version
uni.getSystemInfo({
success: function(res) {
console.log(res)
console.log(res.appVersion, 'APP版本号')
}
})
// 条件编辑只在微信小程序显示
// #ifdef MP-WEIXIN
const accountInfo = wx.getAccountInfoSync();
this.version_number = accountInfo.miniProgram.version // 小程序 版本号
console.log(accountInfo.miniProgram.version, '小程序版本号')
// #endif
感觉文章好的话记得点个心心和关注和收藏,有错的地方麻烦指正一下,如果需要转载,请标明出处,多谢!!!