【uniapp2】获取manifest里的versionName版本号

在要展示版本号的页面中添加:

onLoad() {
    // 获取本地应用资源版本号
    plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
      this.innerVer = wgtinfo.version;
      this.versionCode = wgtinfo.versionCode;
      console.log(wgtinfo);
    });
  },

打印看看获取的信息:
【uniapp2】获取manifest里的versionName版本号_第1张图片
在浏览器里运行的是会报错的Error in onLoad hook: "ReferenceError: plus is not defined",因为plus是无法在浏览器中渲染的,连接手机基座就能看了!

【uniapp2】获取manifest里的versionName版本号_第2张图片

你可能感兴趣的:(前端,vue.js,uniapp)