在Angular 1.x中,您可以使用运行时确定当前版本
angular.version
。
角度2.x有什么相似之处吗?我搜索了ng
,ng.core
,ng.common
和ng.compiler
个对象而没有任何运气。
答案 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;
}
如果您只需要在开发工具中获取该版本,请尝试类似
的内容document.querySelector('[ng-version]').getAttribute('ng-version')
或检查app-root
元素。