确定当前的Angular 2.x版本

时间:2016-09-07 07:29:20

标签: angular

在Angular 1.x中,您可以使用运行时确定当前版本 angular.version

角度2.x有什么相似之处吗?我搜索了ngng.coreng.commonng.compiler个对象而没有任何运气。

1 个答案:

答案 0 :(得分:2)

从Angular 2.3.0-rc0及更高版本中包含的this commit开始,您可以使用VERSION中的@angular/core const。

import { Component, VERSION } from '@angular/core';

@Component({
  selector: 'angular-version',
  template: '<p>Version: {{version}}</p>'
})
export class VersionComponent {
  version: string = VERSION.full;
}

Live example

如果您只需要在开发工具中获取该版本,请尝试类似

的内容
document.querySelector('[ng-version]').getAttribute('ng-version')

或检查app-root元素。