uniapp开发时涉及到版本更新时,经常需要获取当前版本号。
第一种
plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
console.log(JSON.stringify(wgtinfo));
console.log(wgtinfo.version); //应用版本号
that.version = wgtinfo.version
})
第二种
plus.runtime.version
uniapp开发时涉及到版本更新时,经常需要获取当前版本号。
plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
console.log(JSON.stringify(wgtinfo));
console.log(wgtinfo.version); //应用版本号
that.version = wgtinfo.version
})
plus.runtime.version