Ionic 3-如何获取应用程序版本号?

时间:2019-07-17 11:00:45

标签: cordova ionic3 ionic-native

我正在使用应用程序版本插件来获取版本号。我正在尝试如下:plugin

this.platform.ready().then(()=> {
this.appVersion.getVersionNumber().then((res)=>{
console.log(res); 
}, (err)=>{
console.log(err); 
});
}); 

我遇到错误:

class not found

有人遇到相同的问题吗?或者还有其他方法可以获取版本号吗?

2 个答案:

答案 0 :(得分:0)

import { AppVersion } from '@ionic-native/app-version';
export class appVersion {
   public version;

   constructor(private appVersion: AppVersion) { 
      .
      .
      this.version = this.appVersion.getVersionNumber();
   }
}

使用getVersionNumber函数可以获取版本。

注意:App版本插件不适用于浏览器环境。

答案 1 :(得分:0)

我忘了添加设备事件。所以最后我添加了设备事件,现在它运行良好。

this.platform.ready().then(()=> {
   this.appVersion.getVersionNumber().then((res)=>{
    console.log(res); 
   }, (err)=>{
    console.log(err); 
   });
});