转载https://segmentfault.com/a/1190000011562077

Angular编译机制

前言

http://www.cnblogs.com/ztwBlog/p/6209759.html

这是我用来进行实验的代码,它是基于quickstart项目,并根据aot文档修改得到的。各位可以用它来进行探索,也可以自己基于quickstart进行修改(个人建议后者)。

2018年2月17日更新:最近又做了2个小Demo用来研究Angular的编译和打包,基于Angular5,一个使用rollup一个使用webpack,(rollup目前无法做到Angular的lazy loading)。不仅项目文件结构非常简洁,而且使用ngc(Angular compiler)的输出作为打包的输入,这意味着:你不仅可以修改ts代码然后查看ngc输出有何变化,而且可以修改ngc输出然后查看最终的应用会如何运行,类似于玩“汇编”的感觉,我相信这能加深学习者对Angular的理解甚至开启源码学习之路。

什么是Angular编译

Angular应用由许多组件、指令、管道等组成,并且每个组件有自己的HTML模板,它们按照Angular规定的语法进行组织。然而Angular的语法并不能被浏览器直接理解。为了让浏览器能运行我们写的项目,这些组件、指令、管道和HTML模板必须先被Angular编译器编译成浏览器可执行的Javascript。

为什么Angular需要编译

这个问题相当于:“为什么不让用户像以前一样,写浏览器能直接执行的JS代码?”

  1. 对于Angular来说,简练的js代码执行起来不高效(从时间、内存、文件大小的角度),高效的js代码写起来不简练。为了让Angular既易于书写又能拥有极高的效率,我们可以先用一种简练的Angular语法表达我们语义,然后让编译器根据我们写的源代码编译出同等语义的、真正用来执行的、但难以阅读和手写的js代码。

    内存、文件大小的效率提升比较容易理解,Angular编译器会输出尽可能优化、简洁(牺牲可读性)的代码。时间上的效率提升很大程度来自于Angular2的变化检测代码对于Javascript虚拟机更友好,简单来说就是为每个组件都生成一段自己的变化检测代码,直接对这个组件的每一个绑定逐一检查,而不是像AngularJS一样,对所有组件都同一个通用的检测算法。可以阅读参考资料5的 Why we need compilation in Angular? 段落。

  2. 编译可以让Angular与客户端(浏览器)解耦。也就是说,可以用另一种编译器,输入相同的Angular项目代码,输出能在手机上运行的APP!Angular首页就是这样介绍的:"Learn one way to build applications with Angular and reuse your code and abilities to build apps for any deployment target. For web, mobile web, native mobile and native desktop."

Angular编译器(ngc)

普通的typescript项目需要用typescript编译器(tsc)来编译,而ngc是专用于Angular项目的tsc替代者。它内部封装了tsc,还额外增加了用于Angular的选项、输出额外的文件。

截图自ng-conf视频,除以上三种输出之外ngc还可以产生ngfactoryngstyle文件。如视频中所说,图中三种输出是Angular library(第三方库,比如Angular Material)需要发布的,ngfactoryngstyle应该由library的使用者在编译自己的Angular项目的时候产生(tsconfig中的angularCompilerOptions.skipTemplateCodegen字段可以控制AOT是否产生这2种文件)。

根据最新的讲座,在AOT模式下输出的是ts代码而不是js代码。在JIT模式下直接输出js代码。

tsc读取tsconfig配置文件compilerOptions部分,ngc读取angularCompilerOptions部分。

Angular文档:There is actually only one Angular compiler. The difference between AOT and JIT is a matter of timing and tooling. 
Angular编译有两种:Ahead-of-time (AOT) 和 just-in-time (JIT)。但是实际上使用的是同一个编译器,AOT和JIT的区别只是编译的时机编译所使用的工具库

Angular文档对.metadata.json的解释.metadata.json文件是Angular编译器产生的,它用json的形式记录了源.ts中decorator信息、依赖注入信息,从而Angular二次编译时不再需要从.ts中提取metadata(从而不需要.ts源代码的参与)。二次编译的情形:第三方库作者进行第一次编译,产生图中展示的三种文件并发布(不需要发布.ts源代码),然后,库的用户将这些库文件与自己的项目一起编译(第二次编译),产生可运行的应用。如果你是Angular library的开发者并且希望你的library支持用户进行AOT,那么你需要发布.metadata.json.js文件,否则,你不需要.metadata.json

just-in-time (JIT)

JIT一般经历的步骤:

  1. 程序员用Typescript和Angular语法编写源代码。
  2. tsc将Typescript代码(包括我们写的,以及Angular框架、Angular编译器代码)编译成JavaScript代码。
  3. 打包、混淆、压缩。
  4. 将得到的bundle以及其他需要的静态资源部署到服务器上。
    以下是发生在客户端(用户浏览器)的步骤:
  5. 客户端下载bundle,开始执行这些JavaScript。
  6. Angular启动,Angular调用Angular编译器,将Angular源代码(Javascript代码)编译成浏览器真正执行的Javascript目标代码(也就是后面会讲的NgFactories)。

    Angular的启动源于main.js(由main.ts编译得到)的执行。

  7. 创建各种组件的实例(通过NgFactories),产生了我们看到的应用。

Ahead-of-time (AOT)

AOT一般经历的步骤:

  1. 程序员用Typescript和Angular语法编写源代码。
  2. ngc编译应用,其中包括两步:

    • 2.1 将Angular源代码(此时是Typescript代码)编译,输出Typescript目标代码(也就是后面会讲的NgFactories)。这一步是Angular编译的核心,我们在后文仔细研究。后面将反复提及“AOT步骤2.1”。
    • 2.2 ngc调用tsc将应用的Typescript代码编译成Javascript代码(包括2.1产生的我们写的源代码Angular框架的Typescript代码)。

    将ts编译为js的过程中,能发现Angular程序中的类型错误,比如class没有定义a属性你却去访问它。
    哪些代码是需要编译的?根据tsconfig-aot.json的"files"字段,以app.module.tsmain.ts为起点,直接或间接import的所有.ts都需要编译。当然,Lazy loading module由于没有被import而不会被加入bundle中,但是Angular AOT Webpack 插件会智能地找到Lazy loading module并将它编译成另外一个bundle。

  3. 摇树优化(Tree shaking),将没有用的代码删掉。

    Angular文档:Tree shaking and AOT compilation are separate steps. Tree shaking can only target JavaScript code(目前的工具只能对Javascript代码进行摇树优化). AOT compilation converts more of the application to JavaScript, which in turn makes more of the application "tree shakable".

  4. 打包、混淆、压缩。
  5. 将得到的bundle以及其他需要的静态资源部署到服务器上。

以下是发生在客户端(用户浏览器)的步骤:

  1. 客户端下载bundle,开始执行这些JavaScript。
  2. Angular启动,由于bundle中已经有了NgFactories的Javascript代码,因此Angular直接用它们来创建各种组件的实例,产生了我们看到的应用。

Angular编译(JIT步骤6、AOT步骤2.1)的顺序

Angular编译器输入NgModule,编译其中的entryComponents指定的那些组件。对每个entryComponents都产生对应的ComponentFactory类型,保存在一个ComponentFactoryResolver类型中。最后输出NgModuleFactory类型

我们知道,组件的模板中可以引用别的组件,从而构成了组件树。entryComponents就是组件树的根节点,每一个entryComponents都引申出一颗组件树。编译器从一个entryComponent出发,就能编译到组件树中的所有组件。虽然编译器为每个组件都生成了工厂函数,但是只需要将entryComponents的工厂函数保存在ComponentFactoryResolver对象中就够了,因为父组件工厂在创建实例的时候会递归调用子组件的工厂。因此运行时只需要调用根组件的工厂函数,就能得到一颗组件树。

为什么产生的都是类型而不是对象?因为编译是静态的,编译器只能依赖于静态的数据(编译器只是静态地提取分析decorators和metadata;编译器不会执行源代码、也不知道我们定义的那些函数是干什么的),并且产生静态的结果(输出客户端要执行代码),只有类型这种静态的信息能够用代码来表示。而对象是动态的,它是运行时在内存中的一段数据,不能用ts/js代码来表示。

NgModules是编译组件的上下文:编译一个组件的时候,除了需要本组件的模板和metadata信息,编译器还需要知道当前NgModule中声明的其他组件、指令、管道,因为在这个组件的template中可能使用它们。所以,不像AngularJS,组件、指令、管道不是全局有效的,只有声明(declare)了它们的NgModule,或者import它们所在的NgModule,才能使用它们,否则编译报错。这有助于在大型项目中隔离功能模块、防止命名(selector)冲突。

在运行时,Angular会使用NgModuleFactory创建出模块的实例:NgModuleRef
在NgModuleRef中有一个重要的属性:componentFactoryResolver,它就是刚才那个ComponentFactoryResolver类型的实例,给它一个组件类(类型在运行时的形态,即function),它会给你返回对应的ComponentFactory类型实例

AOT步骤2.1产生的NgFactories

NgFactories是浏览器真正执行的代码(如果是Typescript形式的,则需要先编译成Javascript)。每个组件、NgModule都会生成对应的工厂。组件工厂中包含了创建组件、渲染组件——这涉及DOM操作、执行变化检测——获取oldValue和newValue并对比、销毁组件的逻辑。当需要产生某个组件的实例的时候,Angular用组件工厂来实例化一个组件对象。NgModule实例也是Angular用NgModule factory来创建的。

Angular文档:JIT compilation generates these same NgFactories in memory where they are largely invisible. AOT compilation reveals them as separate, physical files.
其实无论是AOT还是JIT,angular-complier都输出NgFactories,只不过AOT产生的输出到*.ngfactory.ts文件中,JIT产生的输出到客户端内存中。

Angular文档:Each component factory creates an instance of the component at runtime by combining the original class file and a JavaScript representation of the component's template. Note that the original component class is still referenced internally by the generated factory.
每一个component factory可以在运行时创建组件的实例,通过组合组件类(比如class AppComponent)和组件模板的JavaScript表示。注意,在*.ngfactory.ts中,仍然引用源文件中的组件类(见下例)。
这是步骤2.1产生的其中一个文件app.component.ngfactory.ts

/**
* @fileoverview This file is generated by the Angular template compiler.
* Do not edit.
* @suppress {suspiciousCode,uselessCode,missingProperties,missingOverride}
*/
/* tslint:disable */ import * as i0 from './app.component.css.shim.ngstyle';
import * as i1 from '@angular/core';
import * as i2 from '../../../src/app/app.component';
import * as i3 from '@angular/common';
import * as i4 from '@angular/forms';
import * as i5 from './child1.component.ngfactory';
import * as i6 from '../../../src/app/child1.component';
const styles_AppComponent:any[] = [i0.styles];
export const RenderType_AppComponent:i1.RendererType2 = i1.ɵcrt({encapsulation:0,styles:styles_AppComponent,
data:{}});
function View_AppComponent_1(_l:any):i1.ɵViewDefinition {
return i1.ɵvid(0,[(_l()(),i1.ɵeld(0,(null as any),(null as any),1,'h1',([] as any[]),
(null as any),(null as any),(null as any),(null as any),(null as any))),(_l()(),
i1.ɵted((null as any),['This is heading']))],(null as any),(null as any));
}
function View_AppComponent_2(_l:any):i1.ɵViewDefinition {
return i1.ɵvid(0,[(_l()(),i1.ɵeld(0,(null as any),(null as any),1,'div',([] as any[]),
(null as any),(null as any),(null as any),(null as any),(null as any))),(_l()(),
i1.ɵted((null as any),['','']))],(null as any),(_ck,_v) => {
const currVal_0:any = _v.context.$implicit;
_ck(_v,1,0,currVal_0);
});
}
export function View_AppComponent_0(_l:any):i1.ɵViewDefinition {
return i1.ɵvid(0,[(_l()(),i1.ɵeld(0,(null as any),(null as any),1,'button',([] as any[]),
(null as any),[[(null as any),'click']],(_v,en,$event) => {
var ad:boolean = true;
var _co:i2.AppComponent = _v.component;
if (('click' === en)) {
const pd_0:any = ((<any>_co.toggleHeading()) !== false);
ad = (pd_0 && ad);
}
return ad;
},(null as any),(null as any))),(_l()(),i1.ɵted((null as any),['Toggle Heading'])),
(_l()(),i1.ɵted((null as any),['\n'])),(_l()(),i1.ɵand(16777216,(null as any),
(null as any),1,(null as any),View_AppComponent_1)),i1.ɵdid(16384,(null as any),
0,i3.NgIf,[i1.ViewContainerRef,i1.TemplateRef],{ngIf:[0,'ngIf']},(null as any)),
(_l()(),i1.ɵted((null as any),['\n\n'])),(_l()(),i1.ɵeld(0,(null as any),(null as any),
1,'h3',([] as any[]),(null as any),(null as any),(null as any),(null as any),
(null as any))),(_l()(),i1.ɵted((null as any),['List of Heroes'])),(_l()(),
i1.ɵted((null as any),['\n'])),(_l()(),i1.ɵand(16777216,(null as any),(null as any),
1,(null as any),View_AppComponent_2)),i1.ɵdid(802816,(null as any),0,i3.NgForOf,
[i1.ViewContainerRef,i1.TemplateRef,i1.IterableDiffers],{ngForOf:[0,'ngForOf']},
(null as any)),(_l()(),i1.ɵted((null as any),['\n\n'])),(_l()(),i1.ɵeld(0,
(null as any),(null as any),1,'h5',([] as any[]),(null as any),(null as any),
(null as any),(null as any),(null as any))),(_l()(),i1.ɵted((null as any),
['my name: ',''])),(_l()(),i1.ɵted((null as any),['\n'])),(_l()(),i1.ɵeld(0,
(null as any),(null as any),5,'input',[['type','text']],[[2,'ng-untouched',
(null as any)],[2,'ng-touched',(null as any)],[2,'ng-pristine',(null as any)],
[2,'ng-dirty',(null as any)],[2,'ng-valid',(null as any)],[2,'ng-invalid',
(null as any)],[2,'ng-pending',(null as any)]],[[(null as any),'ngModelChange'],
[(null as any),'input'],[(null as any),'blur'],[(null as any),'compositionstart'],
[(null as any),'compositionend']],(_v,en,$event) => {
var ad:boolean = true;
var _co:i2.AppComponent = _v.component;
if (('input' === en)) {
const pd_0:any = ((<any>i1.ɵnov(_v,16)._handleInput($event.target.value)) !== false);
ad = (pd_0 && ad);
}
if (('blur' === en)) {
const pd_1:any = ((<any>i1.ɵnov(_v,16).onTouched()) !== false);
ad = (pd_1 && ad);
}
if (('compositionstart' === en)) {
const pd_2:any = ((<any>i1.ɵnov(_v,16)._compositionStart()) !== false);
ad = (pd_2 && ad);
}
if (('compositionend' === en)) {
const pd_3:any = ((<any>i1.ɵnov(_v,16)._compositionEnd($event.target.value)) !== false);
ad = (pd_3 && ad);
}
if (('ngModelChange' === en)) {
const pd_4:any = ((<any>(_co.myName = $event)) !== false);
ad = (pd_4 && ad);
}
return ad;
},(null as any),(null as any))),i1.ɵdid(16384,(null as any),0,i4.DefaultValueAccessor,
[i1.Renderer2,i1.ElementRef,[2,i4.COMPOSITION_BUFFER_MODE]],(null as any),
(null as any)),i1.ɵprd(1024,(null as any),i4.NG_VALUE_ACCESSOR,(p0_0:any) => {
return [p0_0];
},[i4.DefaultValueAccessor]),i1.ɵdid(671744,(null as any),0,i4.NgModel,[[8,(null as any)],
[8,(null as any)],[8,(null as any)],[2,i4.NG_VALUE_ACCESSOR]],{model:[0,
'model']},{update:'ngModelChange'}),i1.ɵprd(2048,(null as any),i4.NgControl,
(null as any),[i4.NgModel]),i1.ɵdid(16384,(null as any),0,i4.NgControlStatus,
[i4.NgControl],(null as any),(null as any)),(_l()(),i1.ɵted((null as any),
['\n\n'])),(_l()(),i1.ɵeld(0,(null as any),(null as any),1,'h5',([] as any[]),
(null as any),(null as any),(null as any),(null as any),(null as any))),
(_l()(),i1.ɵted((null as any),['',''])),(_l()(),i1.ɵted((null as any),['\n\n'])),
(_l()(),i1.ɵeld(0,(null as any),(null as any),1,'child1',([] as any[]),(null as any),
(null as any),(null as any),i5.View_Child1Component_0,i5.RenderType_Child1Component)),
i1.ɵdid(49152,(null as any),0,i6.Child1Component,([] as any[]),{ipt:[0,'ipt']},
(null as any)),(_l()(),i1.ɵted((null as any),['\n']))],(_ck,_v) => {
var _co:i2.AppComponent = _v.component;
const currVal_0:any = _co.showHeading;
_ck(_v,4,0,currVal_0);
const currVal_1:any = _co.heroes;
_ck(_v,10,0,currVal_1);
const currVal_10:any = _co.myName;
_ck(_v,18,0,currVal_10);
const currVal_12:any = _co.myName;
_ck(_v,26,0,currVal_12);
},(_ck,_v) => {
var _co:i2.AppComponent = _v.component;
const currVal_2:any = _co.myName;
_ck(_v,13,0,currVal_2);
const currVal_3:any = i1.ɵnov(_v,20).ngClassUntouched;
const currVal_4:any = i1.ɵnov(_v,20).ngClassTouched;
const currVal_5:any = i1.ɵnov(_v,20).ngClassPristine;
const currVal_6:any = i1.ɵnov(_v,20).ngClassDirty;
const currVal_7:any = i1.ɵnov(_v,20).ngClassValid;
const currVal_8:any = i1.ɵnov(_v,20).ngClassInvalid;
const currVal_9:any = i1.ɵnov(_v,20).ngClassPending;
_ck(_v,15,0,currVal_3,currVal_4,currVal_5,currVal_6,currVal_7,currVal_8,currVal_9);
const currVal_11:any = _co.someText;
_ck(_v,23,0,currVal_11);
});
}
export function View_AppComponent_Host_0(_l:any):i1.ɵViewDefinition {
return i1.ɵvid(0,[(_l()(),i1.ɵeld(0,(null as any),(null as any),1,'my-app',([] as any[]),
(null as any),(null as any),(null as any),View_AppComponent_0,RenderType_AppComponent)),
i1.ɵdid(49152,(null as any),0,i2.AppComponent,([] as any[]),(null as any),(null as any))],
(null as any),(null as any));
}
export const AppComponentNgFactory:i1.ComponentFactory<i2.AppComponent> = i1.ɵccf('my-app',
i2.AppComponent,View_AppComponent_Host_0,{},{},([] as any[]));

变量名是不是很奇怪?这是为了防止命名冲突,所以在export的时候增加了一些特殊的字符,这些名字代表什么可以在codegen_private_exports.tsidentifiers.ts中找到。

可以看出,在app.component.ngfactory.tsimport了我们写的app.component.ts文件。更具体地说,是引用了其中的AppComponent类来作为变量_co的类型,你可以看看代码中的变量i2在哪里被使用。

_co是"context"的缩写。context(上下文)是组件类在运行时实例化的对象(比如通过new AppComponent())。组件类完全是由Angular开发者编写的,Angular用context中的数据来渲染template(创建view)、更新view。

  • "View_AppComponent_"+数字 - the internal component,负责(根据template)渲染出组件的视图,和进行变化检测。

    在这篇文章(以及多数前端相关的文章),渲染的意思是构建出DOM树,DOM是Javascript控制Web应用显示的接口。

  • "View_AppComponent_Host_"+数字 - the internal host component,负责渲染出宿主元素<my-app></my-app>,并且使用"the internal component"管理组件的内部视图。
  • AppComponentNgFactory - 类型是ComponentFactory<AppComponent>。使用"the internal host component"来实例化组件(见 ComponentRef API)。

以下图片表示了*.component.ngfactory.ts中各种对象之间的关系:

为什么在模板中只能访问public属性

如果在AppComponent中定义属性private someText = 'hahaha';然后在template中这样绑定{{someText}},那么在进行AOT编译的时候会报错(更具体地说,是步骤2.2),将private去掉以后又可以成功进行AOT编译。
这是因为在app.component.ngfactory.ts中,通过const currVal_11:any = _co.someText;这样的方式访问context(上下文对象)的属性,所以如果someTextAppComponent的private属性,那么tsc在编译的时候就会报错。

如果通过JIT方式编译,在模板中访问private属性不会出现问题。前面说过JIT直接生成Javascript代码,不区分private和public。

如果你实在是既要在模板中访问某属性,又要将这个属性设置为private(处于封装性的考虑),你可以看看参考资料5的"AoT and encapsulation"章节。

AOT步骤2.1如何解析文件的metadata

Angular编译器通过metadata中提供的信息,来生成组件/NgModule的工厂。

Angular编译器是如何解析文件的metadata的呢?它怎么能从我们写的源代码中读懂代码的语义呢?

我们通过decorator(比如@Component(), @Input())来将metadata附加到JavaScript类上。metadata告诉Angular compiler如何处理这个Component/NgModule。在构造函数的声明中也包含了隐式的metadata。
比如constructor(private heroService: HeroService){}告诉编译器:该组件需要注入HeroService这个依赖。

即使Typescript被tsc编译成Javascript,metadata依然保留着。这也是为什么JIT与AOT的原理是相同的。

AOT编译(AOT步骤2.1)分为两个阶段

  1. "AOT collector"收集每个源文件的metadata,并为每个源文件输出一个*.metadata.json文件,它是metadata的abstract syntax tree (AST)表示,见下面的参考资料2。

    "AOT collector"并不尝试去理解metadata信息,它只是将其中的信息放进AST。

  2. "compiler"解析*.metadata.json中的AST,生成Typescript代码。这里的"compiler"是更狭义的编译器,你可以将它理解为编译器的核心部分。

前面已经说过,生成的Typescript代码会引用我们写的源文件。为什么这是必须要的?因为"compiler"的输入仅仅是*.metadata.json而已,它并不知道程序员写的业务逻辑(constructor中的代码、clickHandler中的代码、其他自定义函数中的代码),这些业务逻辑代码的执行依然要交给源文件中定义的组件类(比如AppComponent)。

因此,Angular源代码要想通过编译,要先后满足:

  1. metadata能被"AOT collector"识别并表示成AST。AOT collector只能识别一部分表达式语法,并且它不能识别箭头函数。如果违反了这两点,AOT collector将在AST的对应位置记录一个“错误节点”。如果稍后compiler要用到这个位置的节点,compiler会报错。
  2. AST节点能被compiler解析。compiler只能访问那些被export的symbol,因此未export的symbol不能作为AST的节点。此外,compiler只允许在metadata中创建某些类的实例只支持某些decorators只能在metadata中调用一小部分的函数,详见官方文档
官方文档说:"Decorated component class members must be public. You cannot make an @Input() property private or internal."但是经过实验,@Input() private ipt: any;这样的代码不会出问题(只要不将私有的ipt变量绑定在模板上)。

官方文档还说:"Data bound properties must also be public"。这句话虽然是对的,但是它被放在了Phase 2: code generation这一节,这是有问题的。因为“在模板中绑定私有变量”的出错时间不是在AOT步骤2.1,而是步骤2.2。见下图:此时app.component.ngfactory.ts已经生成了,说明compiler已经解析AST完毕,只不过产生的代码违反了Typescript的私有成员访问限制,这才造成步骤2.2的错误。

读后笔记: ngc包含两个动作,1、把组件、指令、管道和HTML模板被Angular编译器编译成NgFactories的组件工厂(包含创建、渲染、变化检测等逻辑),NgFactories是实例化组件的根本。 2、将第一步的工厂函数(TS)通过tsc转换成浏览器可识别并执行的的JS代码

angular编译机制的更多相关文章

  1. 编译时和运行时、OC中对象的动态编译机制

    编译时 编译时顾名思义就是正在编译的时候.那啥叫编译呢?就是编译器帮你把源代码翻译成机器能识别的代码.(当然只是一般意义上这么说,实际上可能只是翻译成某个中间状态的语言.比如Java只有JVM识别的字 ...

  2. 浅谈java编译机制和运行机制

    源文件和字节码的组成方式 源文件: 拓展名后跟java的文件即java的源文件. Java 源码编译由以下三个过程组成: 1.分析和输入到符号表 2.注解处理 3.语义分析和生成class文件 流程图 ...

  3. OC的动态继承编译机制

    [问]为什么OC不能sizeof一个对象的大小或一个类的大小?和类结构相近的结构体却能够. [再问]为什么OC不能将对象声明到静态空间,如栈中?和类结构相近的结构体却能够. [答]由于OC的动态继承编 ...

  4. 如何预防SQL注入?预编译机制

    1.预编译机制(一次编译多次执行,防止sql注入) 2.预编译机制

  5. Angular入门到精通系列教程(14)- Angular 编译打包 & Docker发布

    目录 1. 概要 2. 编译打包 2.1. 基本打包命令 2.2. 打包部署到二级目录 3. Angular站点的发布 3.1. web服务器发布 3.2. 使用docker发布 4. 总结 环境: ...

  6. 6.6 Android 编译机制的变迁

    我们使用Java开发android,在编译打包APK文件时,会经过以下流程 Java编译器将应用中所有Java文件编译为class文件(JVM运行的是.class文件,而DVM是.dex文件) dx工 ...

  7. C++封装常用对象和对头文件以及预编译机制的探索

    在C++实际开发中,难免会使用到一些你极为常用的算法(比如笔者经常使用的多线程技术),实现这些算法的类或是全局函数或是命名空间等等经常都要被使用多次,你会有哪些办法来使用呢?笔者有4个办法. 第一个方 ...

  8. 个人从源码理解JIT模式下angular编译AppModule的过程

    承接上文.笔者之前将一个angular项目的启动过程分为了两步: 创建平台得到 PlatformRef ,以及执行平台引用提供的方法编译根模块 AppModule .本文就将着眼于创建好的平台,从an ...

  9. jsp自动编译机制

    总的来说,Jasper的自动检测实现的机制比较简单,依靠某后台线程不断检测JSP文件与编译后的class文件的最后修改时间是否相同,若相同则认为没有改动,但倘若不同则需要重新编译.实际上由于在Tomc ...

随机推荐

  1. linux中vim的常用方法

    i 当前光标位置插入 a 当前光标后插入 0 另起一行插入 A 在光标所在行尾插入 I 在光标所在行首插入 :set nu设置 行号 :set nunu 取消行号 gg 到第一行 G 到最后一行 $ ...

  2. YUV编码格式

    YUV是被欧洲电视系统采用的一种颜色编码方法.在现代彩色电视系统中,通常采用三管彩色摄影机或彩色CCD摄像机取像,然后把取 得的彩色图像信号经过分色,分别放大校正后得到RGB,在经过矩阵变换电路,得到 ...

  3. Zooming

    Zooming 是一款纯 javascript 图片缩放库,主要特点有: 不依赖其他库,纯 JavaScript 实现,支持移动设备: 流畅的动画: 可缩放高清图像: 易于集成和定制. 使用方法 1. ...

  4. linux常用命令:top 命令

    top命令是Linux下常用的性能分析工具,能够实时显示系统中各个进程的资源占用状况,类似于Windows的任务管理器.下面详细介绍它的使用方法.top是 一个动态显示过程,即可以通过用户按键来不断刷 ...

  5. Linux基础命令---bc

    bc bc是一种算数语言,其语法和c语言类似,可以交互执行.通过命令行选项可以获得一个标准的数学库.如果请求,在处理任何文件之前定义数学库.BC从处理所有文件的代码开始.命令行中列出的文件按所列顺序排 ...

  6. Qt学习之路(45): 自定义model之一

    前面我们说了Qt提供的几个预定义model.但是,面对变化万千的需求,那几个model是远远不能满足我们的需要的.另外,对于Qt这种框架来说,model的选择首先要能满足绝大多数功能的需要,这就是说, ...

  7. Android查缺补漏(View篇)--布局文件中的“@+id”和“@id”有什么区别?

    Android布局文件中的"@+id"和"@id"有什么区别? +id表示为控件指定一个id(新增一个id),如: <cn.codingblock.vie ...

  8. pyDay3

    内容来自廖雪峰的官方网站 1.关键字参数 def person(**kw): print(kw) >>> person(name=') {'} 关键字参数有什么用?它可以扩展函数的功 ...

  9. Python学习笔记之@classmethod与@staticmethod

    Python面向对象编程中,类中定义的方法可以是 @classmethod 装饰的 类方法 ,也可以是 @staticmethod 装饰的 静态方法 ,用的最多的还是不带装饰器的 实例方法 ,如果把这 ...

  10. 06: linux中find查找命令总结

    1.在当前目录下查找以txt结尾的文件 find . -name "*.txt" 2.在当前目录下查找所有以字母开头的文件 find . -name "[a-z]*&qu ...