第一种获取App版本号
App版本号
// 获取当前app的版本
const systemInfo = uni.getSystemInfoSync();
// 应用程序版本号
// 条件编译,只在APP渲染
// #ifdef APP
this.version_number = systemInfo.appWgtVersion;
// #endif
App的H5版本号
// 获取当前app的版本
const systemInfo = uni.getSystemInfoSync();
// 应用程序版本号
// 条件编译,只在H5渲染
// #ifdef H5
this.version_number = systemInfo.appVersion;
console.log(systemInfo.appVersion,'版本号');
// #endif
第二种获取App版本号
只能在手机模式下才可以打印 , h5 预览模式获取不到的 !!!文章来源:https://www.toymoban.com/news/detail-766819.html
console.log(plus.runtime.version, '版本号')
this.version = plus.runtime.version
第三种获取App版本号
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
最后
感觉文章好的话记得点个心心和关注和收藏,有错的地方麻烦指正一下,如果需要转载,请标明出处,多谢!!!文章来源地址https://www.toymoban.com/news/detail-766819.html
到了这里,关于uniapp获取app版本号、h5版本号、微信小程序版本号的方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!