我正在观看The Angular Compiler 4.0 - TOBIAS BOSCH,并且在视频的1点30分突然说AST is transformed into typescript code if we use AOT compilation or javascript code if we use JIT compilation
。Compilation process a snapshot of the video。现在我非常困惑,真正发生在引擎盖下的是什么?是否(.ts)首先由typescript编译器转换为js然后角度编译器进入播放或角度编译器,作业和打字稿编译器是否进入游戏?我经历了这个What does the angular compiler “compile”?
,但显然我的怀疑还不清楚?任何人都可以帮我解决这个问题吗?
答案 0 :(得分:0)
是否(.ts)首先由typescript编译器转换为js然后角度编译器进入播放或角度编译器做作业和打字稿编译器进入播放
angular html -> TS (to ensure types are correct) - > JS
angular html -> embedded in js and parsed / executed on the fly