离子PWA从config.xml获取版本号 [英] Ionic PWA get version number from config.xml

查看:107
本文介绍了离子PWA从config.xml获取版本号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Ionic PWA中显示config.xml中的版本号.

I want to show the version number from config.xml in an Ionic PWA.

使用离子本机应用程序版本插件,很容易完成ios/android构建.

It is easy to get it done for ios/android builds using ionic native app version plugin.

但是PWA构建的好方法是什么 (npm运行build --release --prod)?

But what is a good approach for a PWA build (npm run build --release --prod)?

推荐答案

好,因此,如果PWA上没有cordova-plugin-app-version,则访问config.xml文件的另一种方法是使用grunt任务将版本复制到模板(如您所知,在Ionic上config.xml文件未放置在可服务"的位置,因此无法在执行时从config.xml读取版本).

Ok, so if cordova-plugin-app-version is not available on PWA, an alternative way to access to config.xml file is using a grunt task that copy the version to your templates (As you know, on Ionic the config.xml file is not placed on a "servable" location, so there is no way to read the version on execution time from config.xml).

例如,如果我们在package.json中控制应用程序版本,则可以配置一个grunt任务,将该版本都复制到config.xml和src/index.html中.

For example, if we control the app version in package.json, we can config a grunt task that copy the version both to config.xml and src/index.html.

  1. package.json 上设置应用版本.

{
"name": "my-app",
"version": "1.0.7",
...

  • 在项目上安装 grunt .

    $> npm install grunt --save-dev
    $> npm install grunt-string-replace --save-dev
    

  • 在config.xml和index.html上设置版本,并创建每次发布版本时都会替换版本号的gruntfile.js.

  • Set version on config.xml and index.html, and create the gruntfile.js that replace the version number each time you release a version.

    Config.xml

    <?xml version='1.0' encoding='utf-8'?>
    <widget version="1.0.7" id="...
    

    src/index.html

    <head>
          <meta charset="UTF-8">
          <title>Ionic App</title>
          <meta name="version" content="1.0.7">
          ...
    

    gruntfile.js

        module.exports = function(grunt) {
        // Project configuration.
        grunt.initConfig({
          pkg: grunt.file.readJSON('package.json'),
          // replace version to config.xml
          'string-replace': {
            inline:{
              files: {
                 'config.xml': 'config.xml',
              },
              options: {
                replacements: [{
                  pattern: /widget version="([\d\D]*?)"/ig,
                  replacement: 'widget version="' + '<%= pkg.version %>"'
                }]
              }
            }
          },
          // replace version to index.html
          'string-replace': {
            inline:{
              files: {
                'src/index.html': 'src/index.html',
              },
              options: {
                replacements: [{
                  pattern: /name="version" content="([\d\D]*?)"/ig,
                  replacement: 'name="version" content="' + '<%= pkg.version %>"'
                }]
              }
            }
          },
        });
    
        grunt.loadNpmTasks('grunt-string-replace');
    
        // Default task(s).
        grunt.registerTask('default', ['string-replace']);
    
        };
    

    1. 使用Meta组件,如果没有插件,则从index.html读取版本.

    1. Using Meta component, read version from index.html if plugins are not available.

    import { AppVersion } from '@ionic-native/app-version';
    import { Platform } from 'ionic-angular';
    import { Meta } from '@angular/platform-browser';
    ...
    @IonicPage({
      name: 'main'
    })
    @Component({
      selector: 'page-main',
      templateUrl: 'main.html',
    })
    export class MainPage {
      protected versionNumber: string;
      constructor(private app: AppVersion, private meta: Meta) {
        if (this.platform.is('cordova')) {
          this.appVersion.getVersionNumber().then(
            (v) => { this.versionNumber = v;},
            (err) => { 
              // PWA
              const viewport = this.meta.getTag('name=version');
              this.versionNumber = viewport.content;
            }
          );
        }else{
          // Debug
          const viewport = this.meta.getTag('name=version');
          this.versionNumber = viewport.content;
        }
      }
      ...
    

  • 在html模板上打印应用程序版本号.

  • Print the app version number on your html template.

    <div  class="app-version" text-center>version {{ versionNumber }}</div>
    

  • 这篇关于离子PWA从config.xml获取版本号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆