在要展示版本号的页面中添加:
onLoad() {
// 获取本地应用资源版本号
plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
this.innerVer = wgtinfo.version;
this.versionCode = wgtinfo.versionCode;
console.log(wgtinfo);
});
},
打印看看获取的信息:
在浏览器里运行的是会报错的Error in onLoad hook: "ReferenceError: plus is not defined"
,因为plus是无法在浏览器中渲染的,连接手机基座就能看了!