从 AngularJS 升级到 Angular

Upgrading from AngularJS to Angular

Angular 这个名字专指现在和未来的 Angular 版本,而 AngularJS 专指 Angular 的所有 1.x 版本。

Angular is the name for the Angular of today and tomorrow.
AngularJS is the name for all 1.x versions of Angular.

有很多大型 AngularJS 应用。 在决定迁移到 Angular 之前,首先要深入思考业务案例。 在这些案例中,最重要的部分之一是时间和需要付出的努力。 本章描述用于把 AngularJS 应用高效迁移到 Angular 平台的内置工具,每次讲一点点。

AngularJS apps are great. Always consider the business case before moving to Angular. An important part of that case is the time and effort to get there. This guide describes the built-in tools for efficiently migrating AngularJS projects over to the Angular platform, a piece at a time.

有些应用可能比其它的升级起来简单,还有一些方法能让把这项工作变得更简单。 即使在正式开始升级过程之前,可以提前准备 AngularJS 的程序,让它向 Angular 看齐。 这些准备步骤几乎都是关于如何让代码更加松耦合、更有可维护性,以及用现代开发工具提高速度的。 这意味着,这种准备工作不仅能让最终的升级变得更简单,而且还能提升 AngularJS 程序的质量。

Some applications will be easier to upgrade than others, and there are many ways to make it easier for yourself. It is possible to prepare and align AngularJS applications with Angular even before beginning the upgrade process. These preparation steps are all about making the code more decoupled, more maintainable, and better aligned with modern development tools. That means in addition to making the upgrade easier, you will also improve the existing AngularJS applications.

成功升级的关键之一是增量式的实现它,通过在同一个应用中一起运行这两个框架,并且逐个把 AngularJS 的组件迁移到 Angular 中。 这意味着可以在不必打断其它业务的前提下,升级更大、更复杂的应用程序,因为这项工作可以多人协作完成,在一段时间内逐渐铺开。 Angular upgrade 模块的设计目标就是让你渐进、无缝的完成升级。

One of the keys to a successful upgrade is to do it incrementally, by running the two frameworks side by side in the same application, and porting AngularJS components to Angular one by one. This makes it possible to upgrade even large and complex applications without disrupting other business, because the work can be done collaboratively and spread over a period of time. The upgrade module in Angular has been designed to make incremental upgrading seamless.

准备工作

Preparation

AngularJS 应用程序的组织方式有很多种。当你想把它们升级到 Angular 的时候, 有些做起来会比其它的更容易些。即使在开始升级之前,也有一些关键的技术和模式可以让你将来升级时更轻松。

There are many ways to structure AngularJS applications. When you begin to upgrade these applications to Angular, some will turn out to be much more easy to work with than others. There are a few key techniques and patterns that you can apply to future proof apps even before you begin the migration.

遵循 AngularJS 风格指南

Follow the AngularJS Style Guide

AngularJS 风格指南收集了一些已证明能写出干净且可维护的 AngularJS 程序的模式与实践。 它包含了很多关于如何书写和组织 AngularJS 代码的有价值信息,同样重要的是,不应该采用的书写和组织 AngularJS 代码的方式。

The AngularJS Style Guide collects patterns and practices that have been proven to result in cleaner and more maintainable AngularJS applications. It contains a wealth of information about how to write and organize AngularJS code - and equally importantly - how not to write and organize AngularJS code.

Angular 是一个基于 AngularJS 中最好的部分构思出来的版本。在这种意义上,它的目标和 AngularJS 风格指南是一样的: 保留 AngularJS 中好的部分,去掉坏的部分。当然,Angular 还做了更多。 说这些的意思是:遵循这个风格指南可以让你写出更接近 Angular 程序的 AngularJS 程序

Angular is a reimagined version of the best parts of AngularJS. In that sense, its goals are the same as the AngularJS Style Guide's: To preserve the good parts of AngularJS, and to avoid the bad parts. There's a lot more to Angular than just that of course, but this does mean that following the style guide helps make your AngularJS app more closely aligned with Angular.

有一些特别的规则可以让使用 Angular 的 upgrade/static 模块进行增量升级变得更简单:

There are a few rules in particular that will make it much easier to do an incremental upgrade using the Angular upgrade/static module:

  • 单一规则 规定每个文件应该只放一个组件。这不仅让组件更容易浏览和查找,而且还让你能逐个迁移它们的语言和框架。 在这个范例程序中,每个控制器、工厂和过滤器都位于各自的源文件中。

    The Rule of 1 states that there should be one component per file. This not only makes components easy to navigate and find, but will also allow us to migrate them between languages and frameworks one at a time. In this example application, each controller, component, service, and filter is in its own source file.

  • 按特性分目录的结构模块化规则在较高的抽象层定义了一些相似的原则:应用程序中的不同部分应该被分到不同的目录和 NgModule 中。

    The Folders-by-Feature Structure and Modularity rules define similar principles on a higher level of abstraction: Different parts of the application should reside in different directories and NgModules.

如果应用程序能用这种方式把每个特性分到一个独立目录中,它也就能每次迁移一个特性。 对于那些还没有这么做的程序,强烈建议把应用这条规则作为准备步骤。而且这也不仅仅对升级有价值, 它还是一个通用的规则,可以让你的程序更“坚实”。

When an application is laid out feature per feature in this way, it can also be migrated one feature at a time. For applications that don't already look like this, applying the rules in the AngularJS style guide is a highly recommended preparation step. And this is not just for the sake of the upgrade - it is just solid advice in general!

使用模块加载器

Using a Module Loader

当你把应用代码分解到每个文件中只放一个组件的粒度后,通常会得到一个由大量相对较小的文件组成的项目结构。 这比组织成少量大文件要整洁得多,但如果你不得不通过 <script> 标签在 HTML 页面中加载所有这些文件,那就不好玩了。 尤其是当你不得不自己按正确的顺序维护这些标签时更是如此,就要开始使用模块加载器了。

When you break application code down into one component per file, you often end up with a project structure with a large number of relatively small files. This is a much neater way to organize things than a small number of large files, but it doesn't work that well if you have to load all those files to the HTML page with <script> tags. Especially when you also have to maintain those tags in the correct order. That's why it's a good idea to start using a module loader.

使用模块加载器,比如SystemJSWebpackBrowserify, 可以让你在程序中使用 TypeScript 或 ES2015 语言内置的模块系统。 你可以使用 importexport 特性来明确指定哪些代码应该以及将会被在程序的不同部分之间共享。 对于 ES5 程序来说,可以改用 CommonJS 风格的 requiremodule.exports 特性代替。 无是论哪种情况,模块加载器都会按正确的顺序加载程序中用到的所有代码。

Using a module loader such as SystemJS, Webpack, or Browserify allows us to use the built-in module systems of TypeScript or ES2015. You can use the import and export features that explicitly specify what code can and will be shared between different parts of the application. For ES5 applications you can use CommonJS style require and module.exports features. In both cases, the module loader will then take care of loading all the code the application needs in the correct order.

当要把应用程序投入生产环境时,模块加载器也会让你把所有这些文件打成完整的产品包变得容易一些。

When moving applications into production, module loaders also make it easier to package them all up into production bundles with batteries included.

迁移到 TypeScript

Migrating to TypeScript

Angular 升级计划的一部分是引入 TypeScript,即使在开始升级之前,引入 TypeScript 编译器也是有意义的。 这意味着等真正升级的时候需要学习和思考的东西会更少,并且你可以在 AngularJS 代码中开始使用 TypeScript 的特性。

If part of the Angular upgrade plan is to also take TypeScript into use, it makes sense to bring in the TypeScript compiler even before the upgrade itself begins. This means there's one less thing to learn and think about during the actual upgrade. It also means you can start using TypeScript features in your AngularJS code.

TypeScript 是 ECMAScript 2015 的超集,而 ES2015 又是 ECMAScript 5 的超集。 这意味着除了安装一个 TypeScript 编译器,并把文件名都从 *.js 改成 *.ts 之外,其实什么都不用做。 当然,如果仅仅这样做也没什么大用,也没什么有意思的地方。 下面这些额外的步骤可以让你打起精神:

Since TypeScript is a superset of ECMAScript 2015, which in turn is a superset of ECMAScript 5, "switching" to TypeScript doesn't necessarily require anything more than installing the TypeScript compiler and renaming files from *.js to *.ts. But just doing that is not hugely useful or exciting, of course. Additional steps like the following can give us much more bang for the buck:

  • 对那些使用了模块加载器的程序,TypeScript 的导入和导出语法(实际上是 ECMAScript 2015 的导入和导出)可以把代码组织成模块。

    For applications that use a module loader, TypeScript imports and exports (which are really ECMAScript 2015 imports and exports) can be used to organize code into modules.

  • 可以逐步把类型注解添加到现有函数和变量上,以固定它们的类型,并获得其优点:比如编译期错误检查、更好的支持自动完成,以及内联式文档等。

    Type annotations can be gradually added to existing functions and variables to pin down their types and get benefits like build-time error checking, great autocompletion support and inline documentation.

  • 那些 ES2015 中新增的特性,比如箭头函数、letconst、默认函数参数、解构赋值等也可以逐渐添加进来,让代码更有表现力。

    JavaScript features new to ES2015, like arrow functions, lets and consts, default function parameters, and destructuring assignments can also be gradually added to make the code more expressive.

  • 服务和控制器可以转成。这样它们就能一步步接近 Angular 的服务和组件类了,也会让升级变得简单一点。

    Services and controllers can be turned into classes. That way they'll be a step closer to becoming Angular service and component classes, which will make life easier after the upgrade.

使用组件型指令

Using Component Directives

在 Angular 中,组件是用来构建用户界面的主要元素。你把 UI 中的不同部分定义成组件,然后在模板中使用这些组件合成出最终的 UI。

In Angular, components are the main primitive from which user interfaces are built. You define the different portions of the UI as components and compose them into a full user experience.

你在 AngularJS 中也能这么做。那就是一种定义了自己的模板、控制器和输入/输出绑定的指令 —— 跟 Angular 中对组件的定义是一样的。 要迁移到 Angular,通过组件型指令构建的应用程序会比直接用 ng-controllerng-include 和作用域继承等底层特性构建的要容易得多。

You can also do this in AngularJS, using component directives. These are directives that define their own templates, controllers, and input/output bindings - the same things that Angular components define. Applications built with component directives are much easier to migrate to Angular than applications built with lower-level features like ng-controller, ng-include, and scope inheritance.

要与 Angular 兼容,AngularJS 的组件型指令应该配置下列属性:

To be Angular compatible, an AngularJS component directive should configure these attributes:

  • restrict: 'E'。组件通常会以元素的方式使用。

    restrict: 'E'. Components are usually used as elements.

  • scope: {} - 一个独立作用域。在 Angular 中,组件永远是从它们的环境中被隔离出来的,在 AngularJS 中也同样如此。

    scope: {} - an isolate scope. In Angular, components are always isolated from their surroundings, and you should do this in AngularJS too.

  • bindToController: {}。组件的输入和输出应该绑定到控制器,而不是 $scope

    bindToController: {}. Component inputs and outputs should be bound to the controller instead of using the $scope.

  • controllercontrollerAs。组件要有自己的控制器。

    controller and controllerAs. Components have their own controllers.

  • templatetemplateUrl。组件要有自己的模板。

    template or templateUrl. Components have their own templates.

组件型指令还可能使用下列属性:

Component directives may also use the following attributes:

  • transclude: true:如果组件需要从其它地方透传内容,就设置它。

    transclude: true/{}, if the component needs to transclude content from elsewhere.

  • require:如果组件需要和父组件的控制器通讯,就设置它。

    require, if the component needs to communicate with some parent component's controller.

组件型指令不能使用下列属性:

Component directives should not use the following attributes:

  • compile。Angular 不再支持它。

    compile. This will not be supported in Angular.

  • replace: true。Angular 永远不会用组件模板替换一个组件元素。这个特性在 AngularJS 中也同样不建议使用了。

    replace: true. Angular never replaces a component element with the component template. This attribute is also deprecated in AngularJS.

  • priorityterminal。虽然 AngularJS 的组件可能使用这些,但它们在 Angular 中已经没用了,并且最好不要再写依赖它们的代码。

    priority and terminal. While AngularJS components may use these, they are not used in Angular and it is better not to write code that relies on them.

AngularJS 中一个完全向 Angular 架构对齐过的组件型指令是这样的:

An AngularJS component directive that is fully aligned with the Angular architecture may look something like this:

export function heroDetailDirective() { return { restrict: 'E', scope: {}, bindToController: { hero: '=', deleted: '&' }, template: ` <h2>{{$ctrl.hero.name}} details!</h2> <div><label>id: </label>{{$ctrl.hero.id}}</div> <button ng-click="$ctrl.onDelete()">Delete</button> `, controller: function() { this.onDelete = () => { this.deleted({hero: this.hero}); }; }, controllerAs: '$ctrl' }; }
hero-detail.directive.ts
      
      
  1. export function heroDetailDirective() {
  2. return {
  3. restrict: 'E',
  4. scope: {},
  5. bindToController: {
  6. hero: '=',
  7. deleted: '&'
  8. },
  9. template: `
  10. <h2>{{$ctrl.hero.name}} details!</h2>
  11. <div><label>id: </label>{{$ctrl.hero.id}}</div>
  12. <button ng-click="$ctrl.onDelete()">Delete</button>
  13. `,
  14. controller: function() {
  15. this.onDelete = () => {
  16. this.deleted({hero: this.hero});
  17. };
  18. },
  19. controllerAs: '$ctrl'
  20. };
  21. }

AngularJS 1.5 引入了组件 API,它让定义指令变得更简单了。 为组件型指令使用这个 API 是一个好主意,因为:

AngularJS 1.5 introduces the component API that makes it easier to define component directives like these. It is a good idea to use this API for component directives for several reasons:

  • 它需要更少的样板代码。

    It requires less boilerplate code.

  • 它强制你遵循组件的最佳实践,比如 controllerAs

    It enforces the use of component best practices like controllerAs.

  • 指令中像 scoperestrict 这样的属性应该有良好的默认值。

    It has good default values for directive attributes like scope and restrict.

如果使用这个组件 API 进行表示,那么上面看到的组件型指令就变成了这样:

The component directive example from above looks like this when expressed using the component API:

export const heroDetail = { bindings: { hero: '<', deleted: '&' }, template: ` <h2>{{$ctrl.hero.name}} details!</h2> <div><label>id: </label>{{$ctrl.hero.id}}</div> <button ng-click="$ctrl.onDelete()">Delete</button> `, controller: function() { this.onDelete = () => { this.deleted(this.hero); }; } };
hero-detail.component.ts
      
      
  1. export const heroDetail = {
  2. bindings: {
  3. hero: '<',
  4. deleted: '&'
  5. },
  6. template: `
  7. <h2>{{$ctrl.hero.name}} details!</h2>
  8. <div><label>id: </label>{{$ctrl.hero.id}}</div>
  9. <button ng-click="$ctrl.onDelete()">Delete</button>
  10. `,
  11. controller: function() {
  12. this.onDelete = () => {
  13. this.deleted(this.hero);
  14. };
  15. }
  16. };

控制器的生命周期钩子 $onInit()$onDestroy()$onChanges() 是 AngularJS 1.5 引入的另一些便利特性。 它们都很像Angular 中的等价物,所以,围绕它们组织组件生命周期的逻辑在升级到 Angular 时会更容易。

Controller lifecycle hook methods $onInit(), $onDestroy(), and $onChanges() are another convenient feature that AngularJS 1.5 introduces. They all have nearly exact equivalents in Angular, so organizing component lifecycle logic around them will ease the eventual Angular upgrade process.

使用升级适配器进行升级

Upgrading with ngUpgrade

不管要升级什么,Angular 中的 ngUpgrade 库都会是一个非常有用的工具 —— 除非是小到没功能的应用。 借助它,你可以在同一个应用程序中混用并匹配 AngularJS 和 Angular 的组件,并让它们实现无缝的互操作。 这意味着你不用被迫一次性做完所有的升级工作,因为在整个演进过程中,这两个框架可以很自然的和睦相处。

The ngUpgrade library in Angular is a very useful tool for upgrading anything but the smallest of applications. With it you can mix and match AngularJS and Angular components in the same application and have them interoperate seamlessly. That means you don't have to do the upgrade work all at once, since there's a natural coexistence between the two frameworks during the transition period.

升级模块工作原理

How ngUpgrade Works

ngUpgrade 提供的主要工具之一被称为 UpgradeModule。这是一个服务,它可以启动并管理一个能同时支持 Angular 和 AngularJS 的混合式应用。

One of the primary tools provided by ngUpgrade is called the UpgradeModule. This is a module that contains utilities for bootstrapping and managing hybrid applications that support both Angular and AngularJS code.

当使用 ngUpgrade 时,你实际上在同时运行 AngularJS 和 Angular。所有 Angular 的代码运行在 Angular 框架中,而 AngularJS 的代码运行在 AngularJS 框架中。所有这些都是真实的、全功能的框架版本。 没有进行任何仿真,所以你可以认为同时存在着这两个框架的所有特性和自然行为。

When you use ngUpgrade, what you're really doing is running both AngularJS and Angular at the same time. All Angular code is running in the Angular framework, and AngularJS code in the AngularJS framework. Both of these are the actual, fully featured versions of the frameworks. There is no emulation going on, so you can expect to have all the features and natural behavior of both frameworks.

所有这些事情的背后,本质上是一个框架中管理的组件和服务能和来自另一个框架的进行互操作。 这些主要体现在三个方面:依赖注入、DOM 和变更检测。

What happens on top of this is that components and services managed by one framework can interoperate with those from the other framework. This happens in three main areas: Dependency injection, the DOM, and change detection.

依赖注入

Dependency Injection

无论是在 AngularJS 中还是在 Angular 中,依赖注入都位于前沿和中心的位置,但在两个框架的工作原理上,却存在着一些关键的不同之处。

Dependency injection is front and center in both AngularJS and Angular, but there are some key differences between the two frameworks in how it actually works.

AngularJS

Angular

依赖注入的令牌(Token)永远是字符串(译注:指服务名称)。

Dependency injection tokens are always strings

令牌可能有不同的类型。 通常是类,也可能是字符串。

Tokens can have different types. They are often classes. They may also be strings.

只有一个注入器。即使在多模块的应用程序中,每样东西也都会被装入一个巨大的命名空间中。

There is exactly one injector. Even in multi-module applications, everything is poured into one big namespace.

这是一个树状多层注入器:有一个根注入器,而且每个组件也有一个自己的注入器。

There is a tree hierarchy of injectors, with a root injector and an additional injector for each component.

就算有这么多不同点,也并不妨碍你在依赖注入时进行互操作。UpgradeModule 解决了这些差异,并让它们无缝的对接:

Even accounting for these differences you can still have dependency injection interoperability. upgrade/static resolves the differences and makes everything work seamlessly:

  • 通过升级它们,你就能让那些在 AngularJS 中能被注入的服务也可用于 Angular 的代码中。 在框架之间共享的是服务的同一个单例对象。在 Angular 中,这些外来服务总是被放在根注入器中,并可用于所有组件。 它们总是具有字符串令牌 —— 跟它们在 AngularJS 中的令牌相同。

    You can make AngularJS services available for injection to Angular code by upgrading them. The same singleton instance of each service is shared between the frameworks. In Angular these services will always be in the root injector and available to all components.

  • 通过降级它们,你也能让那些在 Angular 中能被注入的服务在 AngularJS 的代码中可用。 只有那些来自 Angular 根注入器的服务才能被降级。同样的,在框架之间共享的是同一个单例对象。 当你注册一个要降级的服务时,要明确指定一个打算在 AngularJS 中使用的字符串令牌

    You can also make Angular services available for injection to AngularJS code by downgrading them. Only services from the Angular root injector can be downgraded. Again, the same singleton instances are shared between the frameworks. When you register a downgraded service, you must explicitly specify a string token that you want to use in AngularJS.

The two injectors in a hybrid application

组件与 DOM

Components and the DOM

在混合式应用中,同时存在来自 AngularJS 和 Angular 中组件和指令的 DOM。 这些组件通过它们各自框架中的输入和输出绑定来互相通讯,它们由 UpgradeModule 桥接在一起。 它们也能通过共享被注入的依赖彼此通讯,就像前面所说的那样。

In the DOM of a hybrid ngUpgrade application are components and directives from both AngularJS and Angular. These components communicate with each other by using the input and output bindings of their respective frameworks, which ngUpgrade bridges together. They may also communicate through shared injected dependencies, as described above.

理解混合式应用的关键在于,DOM 中的每一个元素都只能属于这两个框架之一,而另一个框架则会忽略它。如果一个元素属于 AngularJS ,那么 Angular 就会当它不存在,反之亦然。

The key thing to understand about a hybrid application is that every element in the DOM is owned by exactly one of the two frameworks. The other framework ignores it. If an element is owned by AngularJS, Angular treats it as if it didn't exist, and vice versa.

所以,混合式应用总是像 AngularJS 程序那样启动,处理根模板的也是 AngularJS. 然后,当这个应用的模板中使用到了 Angular 的组件时,Angular 才开始参与。 这个组件的视图由 Angular 进行管理,而且它还可以使用一系列的 Angular 组件和指令。

So normally a hybrid application begins life as an AngularJS application, and it is AngularJS that processes the root template, e.g. the index.html. Angular then steps into the picture when an Angular component is used somewhere in an AngularJS template. That component's template will then be managed by Angular, and it may contain any number of Angular components and directives.

更进一步说,你可以按照需要,任意穿插使用这两个框架。 使用下面的两种方式之一,你可以在这两个框架之间自由穿梭:

Beyond that, you may interleave the two frameworks. You always cross the boundary between the two frameworks by one of two ways:

  1. 通过使用来自另一个框架的组件:AngularJS 的模板中用到了 Angular 的组件,或者 Angular 的模板中使用了 AngularJS 的组件。

    By using a component from the other framework: An AngularJS template using an Angular component, or an Angular template using an AngularJS component.

  2. 通过透传(transclude)或投影(project)来自另一个框架的内容。UpgradeModule 牵线搭桥,把 AngularJS 的透传概念和 Angular 的内容投影概念关联起来。

    By transcluding or projecting content from the other framework. ngUpgrade bridges the related concepts of AngularJS transclusion and Angular content projection together.

DOM element ownership in a hybrid application

当你使用一个属于另一个框架的组件时,就会发生一次跨框架边界的切换。不过,这种切换只发生在该组件元素的子节点上。 考虑一个场景,你从 AngularJS 中使用一个 Angular 组件,就像这样:

Whenever you use a component that belongs to the other framework, a switch between framework boundaries occurs. However, that switch only happens to the elements in the template of that component. Consider a situation where you use an Angular component from AngularJS like this:

<a-component></a-component>
      
      <a-component></a-component>
    

此时,<a-component> 这个 DOM 元素仍然由 AngularJS 管理,因为它是在 AngularJS 的模板中定义的。 这也意味着你可以往它上面添加别的 AngularJS 指令,却不能添加 Angular 的指令。 只有在 <a-component> 组件的模板中才是 Angular 的天下。同样的规则也适用于在 Angular 中使用 AngularJS 组件型指令的情况。

The DOM element <a-component> will remain to be an AngularJS managed element, because it's defined in an AngularJS template. That also means you can apply additional AngularJS directives to it, but not Angular directives. It is only in the template of the <a-component> where Angular steps in. This same rule also applies when you use AngularJS component directives from Angular.

变更检测

Change Detection

AngularJS 中的变更检测全是关于 scope.$apply() 的。在每个事件发生之后,scope.$apply() 就会被调用。 这或者由框架自动调用,或者在某些情况下由你自己的代码手动调用。

The scope.$apply() is how AngularJS detects changes and updates data bindings. After every event that occurs, scope.$apply() gets called. This is done either automatically by the framework, or manually by you.

在 Angular 中,事情有点不一样。虽然变更检测仍然会在每一个事件之后发生,却不再需要每次调用 scope.$apply() 了。 这是因为所有 Angular 代码都运行在一个叫做Angular zone的地方。 Angular 总是知道什么时候代码执行完了,也就知道了它什么时候应该触发变更检测。代码本身并不需要调用 scope.$apply() 或其它类似的东西。

In Angular things are different. While change detection still occurs after every event, no one needs to call scope.$apply() for that to happen. This is because all Angular code runs inside something called the Angular zone. Angular always knows when the code finishes, so it also knows when it should kick off change detection. The code itself doesn't have to call scope.$apply() or anything like it.

在这种混合式应用的案例中,UpgradeModule 在 AngularJS 的方法和 Angular 的方法之间建立了桥梁。发生了什么呢?

In the case of hybrid applications, the UpgradeModule bridges the AngularJS and Angular approaches. Here's what happens:

  • 应用中发生的每件事都运行在 Angular 的 zone 里。 无论事件发生在 AngularJS 还是 Angular 的代码中,都是如此。 这个 zone 会在每个事件之后触发 Angular 的变更检测。

    Everything that happens in the application runs inside the Angular zone. This is true whether the event originated in AngularJS or Angular code. The zone triggers Angular change detection after every event.

  • UpgradeModule 将在每一次离开 Angular zone 时调用 AngularJS 的 $rootScope.$apply()。这样也就同样会在每个事件之后触发 AngularJS 的变更检测。

    The UpgradeModule will invoke the AngularJS $rootScope.$apply() after every turn of the Angular zone. This also triggers AngularJS change detection after every event.

Change detection in a hybrid application

在实践中,你不用在自己的代码中调用 $apply(),而不用管这段代码是在 AngularJS 还是 Angular 中。 UpgradeModule 都替你做了。你仍然可以调用 $apply(),也就是说你不必从现有代码中移除此调用。 在混合式应用中,这些调用只会触发一次额外的 AngularJS 变更检测。

In practice, you do not need to call $apply(), regardless of whether it is in AngularJS on Angular. The UpgradeModule does it for us. You can still call $apply() so there is no need to remove such calls from existing code. Those calls just trigger additional AngularJS change detection checks in a hybrid application.

当你降级一个 Angular 组件,然后把它用于 AngularJS 中时,组件的输入属性就会被 AngularJS 的变更检测体系监视起来。 当那些输入属性发生变化时,组件中相应的属性就会被设置。你也能通过实现OnChanges 接口来挂钩到这些更改,就像它未被降级时一样。

When you downgrade an Angular component and then use it from AngularJS, the component's inputs will be watched using AngularJS change detection. When those inputs change, the corresponding properties in the component are set. You can also hook into the changes by implementing the OnChanges interface in the component, just like you could if it hadn't been downgraded.

相应的,当你把 AngularJS 的组件升级给 Angular 使用时,在这个组件型指令的 scope(或 bindToController)中定义的所有绑定, 都将被挂钩到 Angular 的变更检测体系中。它们将和标准的 Angular 输入属性被同等对待,并当它们发生变化时设置回 scope(或控制器)上。

Correspondingly, when you upgrade an AngularJS component and use it from Angular, all the bindings defined for the component directive's scope (or bindToController) will be hooked into Angular change detection. They will be treated as regular Angular inputs. Their values will be written to the upgraded component's scope (or controller) when they change.

通过 Angular 的 NgModule 来使用 UpgradeModule

Using UpgradeModule with Angular NgModules

AngularJS 还是 Angular 都有自己的模块概念,来帮你把应用组织成一些内聚的功能块。

Both AngularJS and Angular have their own concept of modules to help organize an application into cohesive blocks of functionality.

它们在架构和实现的细节上有着显著的不同。 在 AngularJS 中,你要把 AngularJS 的资源添加到 angular.module 属性上。 在 Angular 中,你要创建一个或多个带有 NgModule 装饰器的类,这些装饰器用来在元数据中描述 Angular 资源。差异主要来自这里。

Their details are quite different in architecture and implementation. In AngularJS, you add Angular assets to the angular.module property. In Angular, you create one or more classes adorned with an NgModule decorator that describes Angular assets in metadata. The differences blossom from there.

在混合式应用中,你同时运行了两个版本的 Angular。 这意味着你至少需要 AngularJS 和 Angular 各提供一个模块。 当你使用 AngularJS 的模块进行引导时,就得把 Angular 的模块传给 UpgradeModule

In a hybrid application you run both versions of Angular at the same time. That means that you need at least one module each from both AngularJS and Angular. You will import UpgradeModule inside the NgModule, and then use it for bootstrapping the AngularJS module.

要了解更多,请参阅NgModules页。

For more information, see NgModules.

引导混合式应用程序

Bootstrapping hybrid applications

要想引导混合式应用,就必须在应用中分别引导 Angular 和 AngularJS 应用的一部分。你必须先引导 Angular ,然后再调用 UpgradeModule 来引导 AngularJS。

To bootstrap a hybrid application, you must bootstrap each of the Angular and AngularJS parts of the application. You must bootstrap the Angular bits first and then ask the UpgradeModule to bootstrap the AngularJS bits next.

在 AngularJS 应用中有一个 AngularJS 的根模块,它用于引导 AngularJS 应用。

In an AngularJS application you have a root AngularJS module, which will also be used to bootstrap the AngularJS application.

angular.module('heroApp', []) .controller('MainCtrl', function() { this.message = 'Hello world'; });
app.module.ts
      
      angular.module('heroApp', [])
  .controller('MainCtrl', function() {
    this.message = 'Hello world';
  });
    

单纯的 AngularJS 应用可以在 HTML 页面中使用 ng-app 指令进行引导,但对于混合式应用你要通过 UpgradeModule 模块进行手动引导。因此,在切换成混合式应用之前,最好先把 AngularJS 改写成使用 angular.bootstrap进行手动引导的方式。

Pure AngularJS applications can be automatically bootstrapped by using an ng-app directive somewhere on the HTML page. But for hybrid applications, you manually bootstrap via the UpgradeModule. Therefore, it is a good preliminary step to switch AngularJS applications to use the manual JavaScript angular.bootstrapmethod even before switching them to hybrid mode.

比如你现在有这样一个通过 ng-app 进行引导的应用:

Say you have an ng-app driven bootstrap such as this one:

<!DOCTYPE HTML> <html lang="en"> <head> <base href="/"> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.js"></script> <script src="app/ajs-ng-app/app.module.js"></script> </head> <body ng-app="heroApp" ng-strict-di> <div id="message" ng-controller="MainCtrl as mainCtrl"> {{ mainCtrl.message }} </div> </body> </html>
      
      
  1. <!DOCTYPE HTML>
  2. <html lang="en">
  3. <head>
  4. <base href="/">
  5. <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.js"></script>
  6. <script src="app/ajs-ng-app/app.module.js"></script>
  7. </head>
  8.  
  9. <body ng-app="heroApp" ng-strict-di>
  10. <div id="message" ng-controller="MainCtrl as mainCtrl">
  11. {{ mainCtrl.message }}
  12. </div>
  13. </body>
  14. </html>

你可以从 HTML 中移除 ng-appng-strict-di 指令,改为从 JavaScript 中调用 angular.bootstrap,它能达到同样效果:

You can remove the ng-app and ng-strict-di directives from the HTML and instead switch to calling angular.bootstrap from JavaScript, which will result in the same thing:

angular.bootstrap(document.body, ['heroApp'], { strictDi: true });
app.module.ts
      
      angular.bootstrap(document.body, ['heroApp'], { strictDi: true });
    

要想把 AngularJS 应用变成 Hybrid 应用,就要先加载 Angular 框架。 根据 搭建本地开发环境中给出的步骤,选择性的把“快速上手”的 Github 仓库中的代码复制过来。

To begin converting your AngularJS application to a hybrid, you need to load the Angular framework. You can see how this can be done with SystemJS by following the instructions in Setup, selectively copying code from the QuickStart github repository.

也可以通过 npm install @angular/upgrade --save 命令来安装 @angular/upgrade 包,并给它添加一个到 @angular/upgrade/static 包的映射。

You also need to install the @angular/upgrade package via npm install @angular/upgrade --save and add a mapping for the @angular/upgrade/static package:

'@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',
systemjs.config.js (map)
      
      '@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',
    

接下来,创建一个 app.module.ts 文件,并添加下列 NgModule 类:

Next, create an app.module.ts file and add the following NgModule class:

import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { UpgradeModule } from '@angular/upgrade/static'; @NgModule({ imports: [ BrowserModule, UpgradeModule ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true }); } }
app.module.ts
      
      
  1. import { NgModule } from '@angular/core';
  2. import { BrowserModule } from '@angular/platform-browser';
  3. import { UpgradeModule } from '@angular/upgrade/static';
  4.  
  5. @NgModule({
  6. imports: [
  7. BrowserModule,
  8. UpgradeModule
  9. ]
  10. })
  11. export class AppModule {
  12. constructor(private upgrade: UpgradeModule) { }
  13. ngDoBootstrap() {
  14. this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true });
  15. }
  16. }

最小化的 NgModule 导入了 BrowserModule,它是每个基于浏览器的 Angular 应用必备的。 它还从 @angular/upgrade/static 中导入了 UpgradeModule,它导出了一些服务提供商,这些提供商会用于升级、降级服务和组件。

This bare minimum NgModule imports BrowserModule, the module every Angular browser-based app must have. It also imports UpgradeModule from @angular/upgrade/static, which exports providers that will be used for upgrading and downgrading services and components.

AppModule 的构造函数中,使用依赖注入技术获取了一个 UpgradeModule 实例,并用它在 AppModule.ngDoBootstrap 方法中启动 AngularJS 应用。 upgrade.bootstrap 方法接受和 angular.bootstrap 完全相同的参数。

In the constructor of the AppModule, use dependency injection to get a hold of the UpgradeModule instance, and use it to bootstrap the AngularJS app in the AppModule.ngDoBootstrap method. The upgrade.bootstrap method takes the exact same arguments as angular.bootstrap:

注意,你不需要在 @NgModule 中加入 bootstrap 声明,因为 AngularJS 控制着该应用的根模板。

Note that you do not add a bootstrap declaration to the @NgModule decorator, since AngularJS will own the root template of the application.

现在,你就可以使用 platformBrowserDynamic.bootstrapModule 方法来启动 AppModule 了。

Now you can bootstrap AppModule using the platformBrowserDynamic.bootstrapModule method.

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; platformBrowserDynamic().bootstrapModule(AppModule);
app.module.ts'
      
      import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

platformBrowserDynamic().bootstrapModule(AppModule);
    

恭喜!你就要开始运行这个混合式应用了!所有现存的 AngularJS 代码会像以前一样正常工作,但是你现在也同样可以运行 Angular 代码了。

Congratulations! You're running a hybrid application! The existing AngularJS code works as before and you're ready to start adding Angular code.

在 AngularJS 的代码中使用 Angular 的组件

Using Angular Components from AngularJS Code

Using an Angular component from AngularJS code

一旦你开始运行混合式应用,你就可以开始逐渐升级代码了。一种更常见的工作模式就是在 AngularJS 的上下文中使用 Angular 的组件。 该组件可能是全新的,也可能是把原本 AngularJS 的组件用 Angular 重写而成的。

Once you're running a hybrid app, you can start the gradual process of upgrading code. One of the more common patterns for doing that is to use an Angular component in an AngularJS context. This could be a completely new component or one that was previously AngularJS but has been rewritten for Angular.

假设你有一个简单的用来显示英雄信息的 Angular 组件:

Say you have a simple Angular component that shows information about a hero:

import { Component } from '@angular/core'; @Component({ selector: 'hero-detail', template: ` <h2>Windstorm details!</h2> <div><label>id: </label>1</div> ` }) export class HeroDetailComponent { }
hero-detail.component.ts
      
      import { Component } from '@angular/core';

@Component({
  selector: 'hero-detail',
  template: `
    <h2>Windstorm details!</h2>
    <div><label>id: </label>1</div>
  `
})
export class HeroDetailComponent { }
    

如果你想在 AngularJS 中使用这个组件,就得用 downgradeComponent() 方法把它降级。 其结果是一个 AngularJS 的指令,你可以把它注册到 AngularJS 的模块中:

If you want to use this component from AngularJS, you need to downgrade it using the downgradeComponent() method. The result is an AngularJS directive, which you can then register in the AngularJS module:

import { HeroDetailComponent } from './hero-detail.component'; /* . . . */ import { downgradeComponent } from '@angular/upgrade/static'; angular.module('heroApp', []) .directive( 'heroDetail', downgradeComponent({ component: HeroDetailComponent }) as angular.IDirectiveFactory );
app.module.ts
      
      import { HeroDetailComponent } from './hero-detail.component';

/* . . . */

import { downgradeComponent } from '@angular/upgrade/static';

angular.module('heroApp', [])
  .directive(
    'heroDetail',
    downgradeComponent({ component: HeroDetailComponent }) as angular.IDirectiveFactory
  );
    

由于 HeroDetailComponent 是一个 Angular 组件,所以你必须同时把它加入 AppModuledeclarations 字段中。

Because HeroDetailComponent is an Angular component, you must also add it to the declarations in the AppModule.

并且由于这个组件在 AngularJS 模块中使用,也是你 Angular 应用的一个入口点,你还需要 将它加入到 NgModule 的 entryComponents 列表中。

And because this component is being used from the AngularJS module, and is an entry point into the Angular application, you must add it to the entryComponents for the NgModule.

import { HeroDetailComponent } from './hero-detail.component'; @NgModule({ imports: [ BrowserModule, UpgradeModule ], declarations: [ HeroDetailComponent ], entryComponents: [ HeroDetailComponent ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true }); } }
app.module.ts
      
      
  1. import { HeroDetailComponent } from './hero-detail.component';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule
  7. ],
  8. declarations: [
  9. HeroDetailComponent
  10. ],
  11. entryComponents: [
  12. HeroDetailComponent
  13. ]
  14. })
  15. export class AppModule {
  16. constructor(private upgrade: UpgradeModule) { }
  17. ngDoBootstrap() {
  18. this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true });
  19. }
  20. }

所有 Angular 组件、指令和管道都必须声明在 NgModule 中。

All Angular components, directives and pipes must be declared in an NgModule.

最终的结果是一个叫做 heroDetail 的 AngularJS 指令,你可以像用其它指令一样把它用在 AngularJS 模板中。

The net result is an AngularJS directive called heroDetail, that you can use like any other directive in AngularJS templates.

<hero-detail></hero-detail>
      
      <hero-detail></hero-detail>
    

注意,它在 AngularJS 中是一个名叫 heroDetail 的元素型指令(restrict: 'E')。 AngularJS 的元素型指令是基于它的名字匹配的。 Angular 组件中的 selector 元数据,在降级后的版本中会被忽略。

Note that this AngularJS is an element directive (restrict: 'E') called heroDetail. An AngularJS element directive is matched based on its name. The selector metadata of the downgraded Angular component is ignored.

当然,大多数组件都不像这个这么简单。它们中很多都有输入属性和输出属性,来把它们连接到外部世界。 Angular 的英雄详情组件带有像这样的输入属性与输出属性:

Most components are not quite this simple, of course. Many of them have inputs and outputs that connect them to the outside world. An Angular hero detail component with inputs and outputs might look like this:

import { Component, EventEmitter, Input, Output } from '@angular/core'; import { Hero } from '../hero'; @Component({ selector: 'hero-detail', template: ` <h2>{{hero.name}} details!</h2> <div><label>id: </label>{{hero.id}}</div> <button (click)="onDelete()">Delete</button> ` }) export class HeroDetailComponent { @Input() hero: Hero; @Output() deleted = new EventEmitter<Hero>(); onDelete() { this.deleted.emit(this.hero); } }
hero-detail.component.ts
      
      
  1. import { Component, EventEmitter, Input, Output } from '@angular/core';
  2. import { Hero } from '../hero';
  3.  
  4. @Component({
  5. selector: 'hero-detail',
  6. template: `
  7. <h2>{{hero.name}} details!</h2>
  8. <div><label>id: </label>{{hero.id}}</div>
  9. <button (click)="onDelete()">Delete</button>
  10. `
  11. })
  12. export class HeroDetailComponent {
  13. @Input() hero: Hero;
  14. @Output() deleted = new EventEmitter<Hero>();
  15. onDelete() {
  16. this.deleted.emit(this.hero);
  17. }
  18. }

这些输入属性和输出属性的值来自于 AngularJS 的模板,而 downgradeComponent() 方法负责桥接它们:

These inputs and outputs can be supplied from the AngularJS template, and the downgradeComponent() method takes care of wiring them up:

<div ng-controller="MainController as mainCtrl"> <hero-detail [hero]="mainCtrl.hero" (deleted)="mainCtrl.onDelete($event)"> </hero-detail> </div>
      
      <div ng-controller="MainController as mainCtrl">
  <hero-detail [hero]="mainCtrl.hero"
               (deleted)="mainCtrl.onDelete($event)">
  </hero-detail>
</div>
    

注意,虽然你正在 AngularJS 的模板中,但却在使用 Angular 的属性(Attribute)语法来绑定到输入属性与输出属性。 这是降级的组件本身要求的。而表达式本身仍然是标准的 AngularJS 表达式。

Note that even though you are in an AngularJS template, you're using Angular attribute syntax to bind the inputs and outputs. This is a requirement for downgraded components. The expressions themselves are still regular AngularJS expressions.

在降级过的组件属性中使用中线命名法
Use kebab-case for downgraded component attributes

为降级过的组件使用 Angular 的属性(Attribute)语法规则时有一个值得注意的例外。 它适用于由多个单词组成的输入或输出属性。在 Angular 中,你要使用小驼峰命名法绑定这些属性:

There's one notable exception to the rule of using Angular attribute syntax for downgraded components. It has to do with input or output names that consist of multiple words. In Angular, you would bind these attributes using camelCase:

[myHero]="hero"
      
      [myHero]="hero"
    

但是从 AngularJS 的模板中使用它们时,你得使用中线命名法:

But when using them from AngularJS templates, you must use kebab-case:

[my-hero]="hero"
      
      [my-hero]="hero"
    

$event 变量能被用在输出属性里,以访问这个事件所发出的对象。这个案例中它是 Hero 对象,因为 this.deleted.emit() 函数曾把它传了出来。

The $event variable can be used in outputs to gain access to the object that was emitted. In this case it will be the Hero object, because that is what was passed to this.deleted.emit().

由于这是一个 AngularJS 模板,虽然它已经有了 Angular 中绑定的属性(Attribute),你仍可以在这个元素上使用其它 AngularJS 指令。 例如,你可以用 ng-repeat 简单的制作该组件的多份拷贝:

Since this is an AngularJS template, you can still use other AngularJS directives on the element, even though it has Angular binding attributes on it. For example, you can easily make multiple copies of the component using ng-repeat:

<div ng-controller="MainController as mainCtrl"> <hero-detail [hero]="hero" (deleted)="mainCtrl.onDelete($event)" ng-repeat="hero in mainCtrl.heroes"> </hero-detail> </div>
      
      <div ng-controller="MainController as mainCtrl">
  <hero-detail [hero]="hero"
               (deleted)="mainCtrl.onDelete($event)"
               ng-repeat="hero in mainCtrl.heroes">
  </hero-detail>
</div>
    

从 Angular 代码中使用 AngularJS 组件型指令

Using AngularJS Component Directives from Angular Code

Using an AngularJS component from Angular code

现在,你已经能在 Angular 中写一个组件,并把它用于 AngularJS 代码中了。 当你从低级组件开始移植,并往上走时,这非常有用。但在另外一些情况下,从相反的方向进行移植会更加方便: 从高级组件开始,然后往下走。这也同样能用 UpgradeModule 完成。 你可以升级AngularJS 组件型指令,然后从 Angular 中用它们。

So, you can write an Angular component and then use it from AngularJS code. This is useful when you start to migrate from lower-level components and work your way up. But in some cases it is more convenient to do things in the opposite order: To start with higher-level components and work your way down. This too can be done using the upgrade/static. You can upgrade AngularJS component directives and then use them from Angular.

不是所有种类的 AngularJS 指令都能升级。该指令必须是一个严格的组件型指令,具有上面的准备指南中描述的那些特征。 确保兼容性的最安全的方式是 AngularJS 1.5 中引入的组件 API

Not all kinds of AngularJS directives can be upgraded. The directive really has to be a component directive, with the characteristics described in the preparation guide above. The safest bet for ensuring compatibility is using the component API introduced in AngularJS 1.5.

可升级组件的简单例子是只有一个模板和一个控制器的指令:

A simple example of an upgradable component is one that just has a template and a controller:

export const heroDetail = { template: ` <h2>Windstorm details!</h2> <div><label>id: </label>1</div> `, controller: function() { } };
hero-detail.component.ts
      
      export const heroDetail = {
  template: `
    <h2>Windstorm details!</h2>
    <div><label>id: </label>1</div>
  `,
  controller: function() {
  }
};
    

你可以使用 UpgradeComponent 方法来把这个组件升级到 Angular。 具体方法是创建一个 Angular指令,继承 UpgradeComponent,在其构造函数中进行 super 调用, 这样你就得到一个完全升级的 AngularJS 组件,并且可以 Angular 中使用。 剩下是工作就是把它加入到 AppModuledeclarations 数组。

You can upgrade this component to Angular using the UpgradeComponent class. By creating a new Angular directive that extends UpgradeComponent and doing a super call inside its constructor, you have a fully upgraded AngularJS component to be used inside Angular. All that is left is to add it to AppModule's declarations array.

import { Directive, ElementRef, Injector, SimpleChanges } from '@angular/core'; import { UpgradeComponent } from '@angular/upgrade/static'; @Directive({ selector: 'hero-detail' }) export class HeroDetailDirective extends UpgradeComponent { constructor(elementRef: ElementRef, injector: Injector) { super('heroDetail', elementRef, injector); } }
hero-detail.component.ts
      
      import { Directive, ElementRef, Injector, SimpleChanges } from '@angular/core';
import { UpgradeComponent } from '@angular/upgrade/static';

@Directive({
  selector: 'hero-detail'
})
export class HeroDetailDirective extends UpgradeComponent {
  constructor(elementRef: ElementRef, injector: Injector) {
    super('heroDetail', elementRef, injector);
  }
}
    
@NgModule({ imports: [ BrowserModule, UpgradeModule ], declarations: [ HeroDetailDirective, /* . . . */ ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true }); } }
app.module.ts
      
      
  1. @NgModule({
  2. imports: [
  3. BrowserModule,
  4. UpgradeModule
  5. ],
  6. declarations: [
  7. HeroDetailDirective,
  8. /* . . . */
  9. ]
  10. })
  11. export class AppModule {
  12. constructor(private upgrade: UpgradeModule) { }
  13. ngDoBootstrap() {
  14. this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true });
  15. }
  16. }

升级后的组件是 Angular 的指令,而不是组件,因为 Angular 不知道 AngularJS 将在它下面创建元素。 Angular 所知道的是升级后的组件只是一个指令(一个标签),Angular 不需要关心组件本身及其子元素。

Upgraded components are Angular directives, instead of components, because Angular is unaware that AngularJS will create elements under it. As far as Angular knows, the upgraded component is just a directive - a tag - and Angular doesn't have to concern itself with its children.

升级后的组件也可能有输入属性和输出属性,它们是在原 AngularJS 组件型指令的 scope/controller 绑定中定义的。 当你从 Angular 模板中使用该组件时,就要使用Angular 模板语法来提供这些输入属性和输出属性,但要遵循下列规则:

An upgraded component may also have inputs and outputs, as defined by the scope/controller bindings of the original AngularJS component directive. When you use the component from an Angular template, provide the inputs and outputs using Angular template syntax, observing the following rules:

绑定定义

Binding definition

模板语法

Template syntax

属性(Attribute)绑定

Attribute binding

myAttribute: '@myAttribute'

<my-component myAttribute="value">

表达式绑定

Expression binding

myOutput: '&myOutput'

<my-component (myOutput)="action()">

单向绑定

One-way binding

myValue: '<myValue'

<my-component [myValue]="anExpression">

双向绑定

Two-way binding

myValue: '=myValue'

用作双向绑定:<my-component [(myValue)]="anExpression">。 由于大多数 AngularJS 的双向绑定实际上只是单向绑定,因此通常写成 <my-component [myValue]="anExpression"> 也够用了。

As a two-way binding: <my-component [(myValue)]="anExpression">. Since most AngularJS two-way bindings actually only need a one-way binding in practice, <my-component [myValue]="anExpression"> is often enough.

举个例子,假设 AngularJS 中有一个表示“英雄详情”的组件型指令,它带有一个输入属性和一个输出属性:

For example, imagine a hero detail AngularJS component directive with one input and one output:

export const heroDetail = { bindings: { hero: '<', deleted: '&' }, template: ` <h2>{{$ctrl.hero.name}} details!</h2> <div><label>id: </label>{{$ctrl.hero.id}}</div> <button ng-click="$ctrl.onDelete()">Delete</button> `, controller: function() { this.onDelete = () => { this.deleted(this.hero); }; } };
hero-detail.component.ts
      
      
  1. export const heroDetail = {
  2. bindings: {
  3. hero: '<',
  4. deleted: '&'
  5. },
  6. template: `
  7. <h2>{{$ctrl.hero.name}} details!</h2>
  8. <div><label>id: </label>{{$ctrl.hero.id}}</div>
  9. <button ng-click="$ctrl.onDelete()">Delete</button>
  10. `,
  11. controller: function() {
  12. this.onDelete = () => {
  13. this.deleted(this.hero);
  14. };
  15. }
  16. };

你可以把这个组件升级到 Angular,然后使用 Angular 的模板语法提供这个输入属性和输出属性:

You can upgrade this component to Angular, annotate inputs and outputs in the upgrade directive, and then provide the input and output using Angular template syntax:

import { Directive, ElementRef, Injector, Input, Output, EventEmitter } from '@angular/core'; import { UpgradeComponent } from '@angular/upgrade/static'; import { Hero } from '../hero'; @Directive({ selector: 'hero-detail' }) export class HeroDetailDirective extends UpgradeComponent { @Input() hero: Hero; @Output() deleted: EventEmitter<Hero>; constructor(elementRef: ElementRef, injector: Injector) { super('heroDetail', elementRef, injector); } }
hero-detail.component.ts
      
      
  1. import { Directive, ElementRef, Injector, Input, Output, EventEmitter } from '@angular/core';
  2. import { UpgradeComponent } from '@angular/upgrade/static';
  3. import { Hero } from '../hero';
  4.  
  5. @Directive({
  6. selector: 'hero-detail'
  7. })
  8. export class HeroDetailDirective extends UpgradeComponent {
  9. @Input() hero: Hero;
  10. @Output() deleted: EventEmitter<Hero>;
  11.  
  12. constructor(elementRef: ElementRef, injector: Injector) {
  13. super('heroDetail', elementRef, injector);
  14. }
  15. }
import { Component } from '@angular/core'; import { Hero } from '../hero'; @Component({ selector: 'my-container', template: ` <h1>Tour of Heroes</h1> <hero-detail [hero]="hero" (deleted)="heroDeleted($event)"> </hero-detail> ` }) export class ContainerComponent { hero = new Hero(1, 'Windstorm'); heroDeleted(hero: Hero) { hero.name = 'Ex-' + hero.name; } }
container.component.ts
      
      
  1. import { Component } from '@angular/core';
  2. import { Hero } from '../hero';
  3.  
  4. @Component({
  5. selector: 'my-container',
  6. template: `
  7. <h1>Tour of Heroes</h1>
  8. <hero-detail [hero]="hero"
  9. (deleted)="heroDeleted($event)">
  10. </hero-detail>
  11. `
  12. })
  13. export class ContainerComponent {
  14. hero = new Hero(1, 'Windstorm');
  15. heroDeleted(hero: Hero) {
  16. hero.name = 'Ex-' + hero.name;
  17. }
  18. }

把 AngularJS 的内容投影到 Angular 组件中

Projecting AngularJS Content into Angular Components

Projecting AngularJS content into Angular

如果你在 AngularJS 模板中使用降级后的 Angular 组件时,可能会需要把模板中的一些内容投影进那个组件。 这也是可能的,虽然在 Angular 中并没有透传(transclude)这样的东西,但它有一个非常相似的概念,叫做内容投影UpgradeModule 也能让这两个特性实现互操作。

When you are using a downgraded Angular component from an AngularJS template, the need may arise to transclude some content into it. This is also possible. While there is no such thing as transclusion in Angular, there is a very similar concept called content projection. upgrade/static is able to make these two features interoperate.

Angular 的组件通过使用 <ng-content> 标签来支持内容投影。下面是这类组件的一个例子:

Angular components that support content projection make use of an <ng-content> tag within them. Here's an example of such a component:

import { Component, Input } from '@angular/core'; import { Hero } from '../hero'; @Component({ selector: 'hero-detail', template: ` <h2>{{hero.name}}</h2> <div> <ng-content></ng-content> </div> ` }) export class HeroDetailComponent { @Input() hero: Hero; }
hero-detail.component.ts
      
      
  1. import { Component, Input } from '@angular/core';
  2. import { Hero } from '../hero';
  3.  
  4. @Component({
  5. selector: 'hero-detail',
  6. template: `
  7. <h2>{{hero.name}}</h2>
  8. <div>
  9. <ng-content></ng-content>
  10. </div>
  11. `
  12. })
  13. export class HeroDetailComponent {
  14. @Input() hero: Hero;
  15. }

当从 AngularJS 中使用该组件时,你可以为它提供内容。正如它们将在 AngularJS 中被透传一样, 它们也在 Angular 中被投影到了 <ng-content> 标签所在的位置:

When using the component from AngularJS, you can supply contents for it. Just like they would be transcluded in AngularJS, they get projected to the location of the <ng-content> tag in Angular:

<div ng-controller="MainController as mainCtrl"> <hero-detail [hero]="mainCtrl.hero"> <!-- Everything here will get projected --> <p>{{mainCtrl.hero.description}}</p> </hero-detail> </div>
      
      <div ng-controller="MainController as mainCtrl">
  <hero-detail [hero]="mainCtrl.hero">
    <!-- Everything here will get projected -->
    <p>{{mainCtrl.hero.description}}</p>
  </hero-detail>
</div>
    

当 AngularJS 的内容被投影到 Angular 组件中时,它仍然留在“AngularJS 王国”中,并被 AngularJS 框架管理着。

When AngularJS content gets projected inside an Angular component, it still remains in "AngularJS land" and is managed by the AngularJS framework.

把 Angular 的内容透传进 AngularJS 的组件型指令

Transcluding Angular Content into AngularJS Component Directives

Projecting Angular content into AngularJS

就像可以把 AngularJS 的内容投影进 Angular 组件一样,你也能把 Angular 的内容透传进 AngularJS 的组件, 但不管怎样,你都要使用它们升级过的版本。

Just as you can project AngularJS content into Angular components, you can transclude Angular content into AngularJS components, whenever you are using upgraded versions from them.

如果一个 AngularJS 组件型指令支持透传,它就会在自己的模板中使用 ng-transclude 指令标记出透传到的位置:

When an AngularJS component directive supports transclusion, it may use the ng-transclude directive in its template to mark the transclusion point:

export const heroDetail = { bindings: { hero: '=' }, template: ` <h2>{{$ctrl.hero.name}}</h2> <div> <ng-transclude></ng-transclude> </div> `, transclude: true };
hero-detail.component.ts
      
      
  1. export const heroDetail = {
  2. bindings: {
  3. hero: '='
  4. },
  5. template: `
  6. <h2>{{$ctrl.hero.name}}</h2>
  7. <div>
  8. <ng-transclude></ng-transclude>
  9. </div>
  10. `,
  11. transclude: true
  12. };

如果你升级这个组件,并把它用在 Angular 中,你就能把准备透传的内容放进这个组件的标签中。

If you upgrade this component and use it from Angular, you can populate the component tag with contents that will then get transcluded:

import { Component } from '@angular/core'; import { Hero } from '../hero'; @Component({ selector: 'my-container', template: ` <hero-detail [hero]="hero"> <!-- Everything here will get transcluded --> <p>{{hero.description}}</p> </hero-detail> ` }) export class ContainerComponent { hero = new Hero(1, 'Windstorm', 'Specific powers of controlling winds'); }
container.component.ts
      
      
  1. import { Component } from '@angular/core';
  2. import { Hero } from '../hero';
  3.  
  4. @Component({
  5. selector: 'my-container',
  6. template: `
  7. <hero-detail [hero]="hero">
  8. <!-- Everything here will get transcluded -->
  9. <p>{{hero.description}}</p>
  10. </hero-detail>
  11. `
  12. })
  13. export class ContainerComponent {
  14. hero = new Hero(1, 'Windstorm', 'Specific powers of controlling winds');
  15. }

让 AngularJS 中的依赖可被注入到 Angular

Making AngularJS Dependencies Injectable to Angular

当运行一个混合式应用时,可能会遇到这种情况:你需要把某些 AngularJS 的依赖注入到 Angular 代码中。 这可能是因为某些业务逻辑仍然在 AngularJS 服务中,或者需要某些 AngularJS 的内置服务,比如 $location$timeout

When running a hybrid app, you may encounter situations where you need to inject some AngularJS dependencies into your Angular code. Maybe you have some business logic still in AngularJS services. Maybe you want access to AngularJS's built-in services like $location or $timeout.

在这些情况下,把一个 AngularJS 提供商升级到Angular 也是有可能的。这就让它将来有可能被注入到 Angular 代码中的某些地方。 比如,你可能在 AngularJS 中有一个名叫 HeroesService 的服务:

In these situations, it is possible to upgrade an AngularJS provider to Angular. This makes it possible to then inject it somewhere in Angular code. For example, you might have a service called HeroesService in AngularJS:

import { Hero } from '../hero'; export class HeroesService { get() { return [ new Hero(1, 'Windstorm'), new Hero(2, 'Spiderman') ]; } }
heroes.service.ts
      
      import { Hero } from '../hero';

export class HeroesService {
  get() {
    return [
      new Hero(1, 'Windstorm'),
      new Hero(2, 'Spiderman')
    ];
  }
}
    

你可以用 Angular 的工厂提供商升级该服务, 它从 AngularJS 的 $injector 请求服务。

You can upgrade the service using a Angular factory provider that requests the service from the AngularJS $injector.

很多开发者都喜欢在一个独立的 ajs-upgraded-providers.ts 中声明这个工厂提供商,以便把它们都放在一起,这样便于引用、创建新的以及在升级完毕时删除它们。

Many developers prefer to declare the factory provider in a separate ajs-upgraded-providers.ts file so that they are all together, making it easier to reference them, create new ones and delete them once the upgrade is over.

同时,建议导出 heroesServiceFactory 函数,以便 AOT 编译器可以拿到它们。

It's also recommended to export the heroesServiceFactory function so that Ahead-of-Time compilation can pick it up.

注意:这个工厂中的字符串 'heroes' 指向的是 AngularJS 的 HeroesService。 AngularJS 应用中通常使用服务名作为令牌,比如 'heroes',并为其追加 'Service' 后缀来创建其类名。

Note: The 'heroes' string inside the factory refers to the AngularJS HeroesService. It is common in AngularJS apps to choose a service name for the token, for example "heroes", and append the "Service" suffix to create the class name.

import { HeroesService } from './heroes.service'; export function heroesServiceFactory(i: any) { return i.get('heroes'); } export const heroesServiceProvider = { provide: HeroesService, useFactory: heroesServiceFactory, deps: ['$injector'] };
ajs-upgraded-providers.ts
      
      import { HeroesService } from './heroes.service';

export function heroesServiceFactory(i: any) {
  return i.get('heroes');
}

export const heroesServiceProvider = {
  provide: HeroesService,
  useFactory: heroesServiceFactory,
  deps: ['$injector']
};
    

然后,你就可以把这个服务添加到 @NgModule 中来把它暴露给 Angular:

You can then provide the service to Angular by adding it to the @NgModule:

import { heroesServiceProvider } from './ajs-upgraded-providers'; @NgModule({ imports: [ BrowserModule, UpgradeModule ], providers: [ heroesServiceProvider ], /* . . . */ }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true }); } }
app.module.ts
      
      
  1. import { heroesServiceProvider } from './ajs-upgraded-providers';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule
  7. ],
  8. providers: [
  9. heroesServiceProvider
  10. ],
  11. /* . . . */
  12. })
  13. export class AppModule {
  14. constructor(private upgrade: UpgradeModule) { }
  15. ngDoBootstrap() {
  16. this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true });
  17. }
  18. }

然后在组件的构造函数中使用该服务的类名作为类型注解注入到组件中,从而在组件中使用它:

Then use the service inside your component by injecting it in the component constructor using its class as a type annotation:

import { Component } from '@angular/core'; import { HeroesService } from './heroes.service'; import { Hero } from '../hero'; @Component({ selector: 'hero-detail', template: ` <h2>{{hero.id}}: {{hero.name}}</h2> ` }) export class HeroDetailComponent { hero: Hero; constructor(heroes: HeroesService) { this.hero = heroes.get()[0]; } }
hero-detail.component.ts
      
      
  1. import { Component } from '@angular/core';
  2. import { HeroesService } from './heroes.service';
  3. import { Hero } from '../hero';
  4.  
  5. @Component({
  6. selector: 'hero-detail',
  7. template: `
  8. <h2>{{hero.id}}: {{hero.name}}</h2>
  9. `
  10. })
  11. export class HeroDetailComponent {
  12. hero: Hero;
  13. constructor(heroes: HeroesService) {
  14. this.hero = heroes.get()[0];
  15. }
  16. }

在这个例子中,你升级了服务类。当注入它时,你可以使用 TypeScript 类型注解来获得这些额外的好处。 它没有影响该依赖的处理过程,同时还得到了启用静态类型检查的好处。 任何 AngularJS 中的服务、工厂和提供商都能被升级 —— 尽管这不是必须的。

In this example you upgraded a service class. You can use a TypeScript type annotation when you inject it. While it doesn't affect how the dependency is handled, it enables the benefits of static type checking. This is not required though, and any AngularJS service, factory, or provider can be upgraded.

让 Angular 的依赖能被注入到 AngularJS 中

Making Angular Dependencies Injectable to AngularJS

除了能升级 AngularJS 依赖之外,你还能降级Angular 的依赖,以便在 AngularJS 中使用它们。 当你已经开始把服务移植到 Angular 或在 Angular 中创建新服务,但同时还有一些用 AngularJS 写成的组件时,这会非常有用。

In addition to upgrading AngularJS dependencies, you can also downgrade Angular dependencies, so that you can use them from AngularJS. This can be useful when you start migrating services to Angular or creating new services in Angular while retaining components written in AngularJS.

例如,你可能有一个 Angular 的 Heroes 服务:

For example, you might have an Angular service called Heroes:

import { Injectable } from '@angular/core'; import { Hero } from '../hero'; @Injectable() export class Heroes { get() { return [ new Hero(1, 'Windstorm'), new Hero(2, 'Spiderman') ]; } }
heroes.ts
      
      
  1. import { Injectable } from '@angular/core';
  2. import { Hero } from '../hero';
  3.  
  4. @Injectable()
  5. export class Heroes {
  6. get() {
  7. return [
  8. new Hero(1, 'Windstorm'),
  9. new Hero(2, 'Spiderman')
  10. ];
  11. }
  12. }

仿照 Angular 组件,把该提供商加入 NgModuleproviders 列表中,以注册它。

Again, as with Angular components, register the provider with the NgModule by adding it to the module's providers list.

import { Heroes } from './heroes'; @NgModule({ imports: [ BrowserModule, UpgradeModule ], providers: [ Heroes ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true }); } }
app.module.ts
      
      
  1. import { Heroes } from './heroes';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule
  7. ],
  8. providers: [ Heroes ]
  9. })
  10. export class AppModule {
  11. constructor(private upgrade: UpgradeModule) { }
  12. ngDoBootstrap() {
  13. this.upgrade.bootstrap(document.body, ['heroApp'], { strictDi: true });
  14. }
  15. }

现在,用 upgradeAdapter.downgradeNg2Provider() 来把 Angular 的 Heroes 包装成AngularJS 的工厂函数,并把这个工厂注册进 AngularJS 的模块中。 依赖在 AngularJS 中的名字你可以自己定:

Now wrap the Angular Heroes in an AngularJS factory function using downgradeInjectable() and plug the factory into an AngularJS module. The name of the AngularJS dependency is up to you:

import { Heroes } from './heroes'; /* . . . */ import { downgradeInjectable } from '@angular/upgrade/static'; angular.module('heroApp', []) .factory('heroes', downgradeInjectable(Heroes)) .component('heroDetail', heroDetailComponent);
app.module.ts
      
      import { Heroes } from './heroes';
/* . . . */
import { downgradeInjectable } from '@angular/upgrade/static';

angular.module('heroApp', [])
  .factory('heroes', downgradeInjectable(Heroes))
  .component('heroDetail', heroDetailComponent);
    

此后,该服务就能被注入到 AngularJS 代码中的任何地方了:

After this, the service is injectable anywhere in AngularJS code:

export const heroDetailComponent = { template: ` <h2>{{$ctrl.hero.id}}: {{$ctrl.hero.name}}</h2> `, controller: ['heroes', function(heroes: Heroes) { this.hero = heroes.get()[0]; }] };
hero-detail.component.ts
      
      export const heroDetailComponent = {
  template: `
    <h2>{{$ctrl.hero.id}}: {{$ctrl.hero.name}}</h2>
  `,
  controller: ['heroes', function(heroes: Heroes) {
    this.hero = heroes.get()[0];
  }]
};
    

在混合式应用中使用 AOT 编译

Using Ahead-of-time compilation with hybrid apps

你也可以其它 Angular 应用一样在混合式应用中发挥 AOT 编译的优势。 对混合式应用的设置过程和预编译章节中所讲的几乎完全一样,不同点在于 index.htmlmain-aot.ts 中。

You can take advantage of Ahead-of-time (AOT) compilation on hybrid apps just like on any other Angular application. The setup for an hybrid app is mostly the same as described in the Ahead-of-time Compilation chapter save for differences in index.html and main-aot.ts

index.html 仍然需要 script 标签来加载 AngularJS 的文件,因此供 AOT 编译的 index.html 也需要加载那些文件。 复制它们的简单方案是把它们全都添加到 copy-dist-files.js 文件中。

The index.html will likely have script tags loading AngularJS files, so the index.html for AOT must also load those files. An easy way to copy them is by adding each to the copy-dist-files.js file.

你还要使用所生成的 AppModuleFactory 而不是原来的 AppModule 来引导一个混合式应用:

You'll need to use the generated AppModuleFactory, instead of the original AppModule to bootstrap the hybrid app:

import { platformBrowser } from '@angular/platform-browser'; import { AppModuleNgFactory } from './app.module.ngfactory'; platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
app/main-aot.ts
      
      import { platformBrowser } from '@angular/platform-browser';

import { AppModuleNgFactory } from './app.module.ngfactory';

platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
    

这就是你为获取 Angular 应用的 AOT 优势所要做的一切。

And that's all you need do to get the full benefit of AOT for Angular apps!

PhoneCat 升级教程

PhoneCat Upgrade Tutorial

在本节和下节中,你将看一个完整的例子,它使用 upgrade 模块准备和升级了一个应用程序。 该应用就是来自原 AngularJS 教程中的Angular PhoneCat。 那是我们很多人当初开始 Angular 探险之旅的地方。 现在,你会看到如何把该应用带入 Angular 的美丽新世界。

In this section, you'll learn to prepare and upgrade an application with ngUpgrade. The example app is Angular PhoneCat from the original AngularJS tutorial, which is where many of us began our Angular adventures. Now you'll see how to bring that application to the brave new world of Angular.

这期间,你将学到如何在实践中应用准备指南中列出的那些重点步骤: 你先让该应用向 Angular 看齐,然后为它引入 SystemJS 模块加载器和 TypeScript。

During the process you'll learn how to apply the steps outlined in the preparation guide. You'll align the application with Angular and also start writing in TypeScript.

要跟随本教程,请先把angular-phonecat仓库克隆到本地,并应用这些步骤。

To follow along with the tutorial, clone the angular-phonecat repository and apply the steps as you go.

在项目结构方面,工作的起点是这样的:

In terms of project structure, this is where the work begins:

angular-phonecat

bower.json

karma.conf.js

package.json

app

core

checkmark

checkmark.filter.js

checkmark.filter.spec.js

phone

phone.module.js

phone.service.js

phone.service.spec.js

core.module.js

phone-detail

phone-detail.component.js

phone-detail.component.spec.js

phone-detail.module.js

phone-detail.template.html

phone-list

phone-list.component.js

phone-list.component.spec.js

phone-list.module.js

phone-list.template.html

img

...

phones

...

app.animations.js

app.config.js

app.css

app.module.js

index.html

e2e-tests

protractor-conf.js

scenarios.js

这确实是一个很好地起点。这些代码使用了 AngularJS 1.5 的组件 API,并遵循了 AngularJS 风格指南进行组织, 在成功升级之前,这是一个很重要的准备步骤

This is actually a pretty good starting point. The code uses the AngularJS 1.5 component API and the organization follows the AngularJS Style Guide, which is an important preparation step before a successful upgrade.

  • 每个组件、服务和过滤器都在它自己的源文件中 —— 就像单一规则所要求的。

    Each component, service, and filter is in its own source file, as per the Rule of 1.

  • corephone-detailphone-list 模块都在它们自己的子目录中。那些子目录除了包含 HTML 模板之外,还包含 JavaScript 代码,它们共同完成一个特性。 这是按特性分目录的结构模块化规则所要求的。

    The core, phone-detail, and phone-list modules are each in their own subdirectory. Those subdirectories contain the JavaScript code as well as the HTML templates that go with each particular feature. This is in line with the Folders-by-Feature Structure and Modularity rules.

  • 单元测试都和应用代码在一起,它们很容易找到。就像规则 组织测试文件中要求的那样。

    Unit tests are located side-by-side with application code where they are easily found, as described in the rules for Organizing Tests.

切换到 TypeScript

Switching to TypeScript

因为你将使用 TypeScript 编写 Angular 的代码,所以在开始升级之前,先要把 TypeScript 的编译器设置好。

Since you're going to be writing Angular code in TypeScript, it makes sense to bring in the TypeScript compiler even before you begin upgrading.

你还将开始逐步淘汰 Bower 包管理器,换成 NPM。后面你将使用 NPM 来安装新的依赖包,并最终从项目中移除 Bower。

You'll also start to gradually phase out the Bower package manager in favor of NPM, installing all new dependencies using NPM, and eventually removing Bower from the project.

先把 TypeScript 包安装到项目中。

Begin by installing TypeScript to the project.

npm i typescript --save-dev
      
      npm i typescript --save-dev
    

还要为那些没有自带类型信息的库(比如 AngularJS 和 Jasmine)安装类型定义文件。

Install type definitions for the existing libraries that you're using but that don't come with prepackaged types: AngularJS and the Jasmine unit test framework.

npm install @types/jasmine @types/angular @types/angular-animate @types/angular-cookies @types/angular-mocks @types/angular-resource @types/angular-route @types/angular-sanitize --save-dev
      
      npm install @types/jasmine @types/angular @types/angular-animate @types/angular-cookies @types/angular-mocks @types/angular-resource @types/angular-route @types/angular-sanitize --save-dev
    

你还应该要往项目目录下添加一个 tsconfig.json 文件, 就像在 TypeScript 配置中讲过的那样。 tsconfig.json 文件会告诉 TypeScript 编译器如何把 TypeScript 文件转成 ES5 代码,并打包进 CommonJS 模块中。

You should also configure the TypeScript compiler with a tsconfig.json in the project directory as described in the TypeScript Configuration guide. The tsconfig.json file tells the TypeScript compiler how to turn your TypeScript files into ES5 code bundled into CommonJS modules.

最后,你应该把下列 npm 脚本添加到 package.json 中,用于把 TypeScript 文件编译成 JavaScript (根据 tsconfig.json 的配置):

Finally, you should add some npm scripts in package.json to compile the TypeScript files to JavaScript (based on the tsconfig.json configuration file):

"script": { "tsc": "tsc", "tsc:w": "tsc -w", ...
      
      "script": {
  "tsc": "tsc",
  "tsc:w": "tsc -w",
  ...
    

现在,从命令行中用监视模式启动 TypeScript 编译器:

Now launch the TypeScript compiler from the command line in watch mode:

npm run tsc:w
      
      npm run tsc:w
    

让这个进程一直在后台运行,监听任何变化并自动重新编译。

Keep this process running in the background, watching and recompiling as you make changes.

接下来,把 JavaScript 文件转换成 TypeScript 文件。 由于 TypeScript 是 ECMAScript 2015 的一个超集,而 ES2015 又是 ECMAScript 5 的超集,所以你可以简单的把文件的扩展名从 .js 换成 .ts, 它们还是会像以前一样工作。由于 TypeScript 编译器仍在运行,它会为每一个 .ts 文件生成对应的 .js 文件,而真正运行的是编译后的 .js 文件。 如果你用 npm start 开启了本项目的 HTTP 服务器,你会在浏览器中看到一个功能完好的应用。

Next, convert your current JavaScript files into TypeScript. Since TypeScript is a super-set of ECMAScript 2015, which in turn is a super-set of ECMAScript 5, you can simply switch the file extensions from .js to .ts and everything will work just like it did before. As the TypeScript compiler runs, it emits the corresponding .js file for every .ts file and the compiled JavaScript is what actually gets executed. If you start the project HTTP server with npm start, you should see the fully functional application in your browser.

有了 TypeScript,你就可以从它的一些特性中获益了。此语言可以为 AngularJS 应用提供很多价值。

Now that you have TypeScript though, you can start benefiting from some of its features. There's a lot of value the language can provide to AngularJS applications.

首先,TypeScript 是一个 ES2015 的超集。任何以前用 ES5 写的程序(就像 PhoneCat 范例)都可以开始通过 TypeScript 纳入那些添加到 ES2015 中的新特性。 这包括 letconst、箭头函数、函数默认参数以及解构(destructure)赋值。

For one thing, TypeScript is a superset of ES2015. Any app that has previously been written in ES5 - like the PhoneCat example has - can with TypeScript start incorporating all of the JavaScript features that are new to ES2015. These include things like lets and consts, arrow functions, default function parameters, and destructuring assignments.

你能做的另一件事就是把类型安全添加到代码中。这实际上已经部分完成了,因为你已经安装了 AngularJS 的类型定义。 TypeScript 会帮你检查是否正确调用了 AngularJS 的 API,—— 比如往 Angular 模块中注册组件。

Another thing you can do is start adding type safety to your code. This has actually partially already happened because of the AngularJS typings you installed. TypeScript are checking that you are calling AngularJS APIs correctly when you do things like register components to Angular modules.

你还能开始把类型注解添加到自己的代码中,来从 TypeScript 的类型系统中获得更多帮助。 比如,你可以给 checkmark 过滤器加上注解,表明它期待一个 boolean 类型的参数。 这可以更清楚的表明此过滤器打算做什么

But you can also start adding type annotations to get even more out of TypeScript's type system. For instance, you can annotate the checkmark filter so that it explicitly expects booleans as arguments. This makes it clearer what the filter is supposed to do.

angular. module('core'). filter('checkmark', function() { return function(input: boolean) { return input ? '\u2713' : '\u2718'; }; });
app/core/checkmark/checkmark.filter.ts
      
      angular.
  module('core').
  filter('checkmark', function() {
    return function(input: boolean) {
      return input ? '\u2713' : '\u2718';
    };
  });
    

Phone 服务中,你可以明确的把 $resource 服务声明为 angular.resource.IResourceService,一个 AngularJS 类型定义提供的类型。

In the Phone service, you can explicitly annotate the $resource service dependency as an angular.resource.IResourceService - a type defined by the AngularJS typings.

angular. module('core.phone'). factory('Phone', ['$resource', function($resource: angular.resource.IResourceService) { return $resource('phones/:phoneId.json', {}, { query: { method: 'GET', params: {phoneId: 'phones'}, isArray: true } }); } ]);
app/core/phone/phone.service.ts
      
      
  1. angular.
  2. module('core.phone').
  3. factory('Phone', ['$resource',
  4. function($resource: angular.resource.IResourceService) {
  5. return $resource('phones/:phoneId.json', {}, {
  6. query: {
  7. method: 'GET',
  8. params: {phoneId: 'phones'},
  9. isArray: true
  10. }
  11. });
  12. }
  13. ]);

你可以在应用的路由配置中使用同样的技巧,那里你用到了 location 和 route 服务。 一旦为它们提供了类型信息,TypeScript 就能检查你是否在用类型的正确参数来调用它们了。

You can apply the same trick to the application's route configuration file in app.config.ts, where you are using the location and route services. By annotating them accordingly TypeScript can verify you're calling their APIs with the correct kinds of arguments.

angular. module('phonecatApp'). config(['$locationProvider', '$routeProvider', function config($locationProvider: angular.ILocationProvider, $routeProvider: angular.route.IRouteProvider) { $locationProvider.hashPrefix('!'); $routeProvider. when('/phones', { template: '<phone-list></phone-list>' }). when('/phones/:phoneId', { template: '<phone-detail></phone-detail>' }). otherwise('/phones'); } ]);
app/app.config.ts
      
      
  1. angular.
  2. module('phonecatApp').
  3. config(['$locationProvider', '$routeProvider',
  4. function config($locationProvider: angular.ILocationProvider,
  5. $routeProvider: angular.route.IRouteProvider) {
  6. $locationProvider.hashPrefix('!');
  7.  
  8. $routeProvider.
  9. when('/phones', {
  10. template: '<phone-list></phone-list>'
  11. }).
  12. when('/phones/:phoneId', {
  13. template: '<phone-detail></phone-detail>'
  14. }).
  15. otherwise('/phones');
  16. }
  17. ]);

你用安装的这个AngularJS.x 类型定义文件 并不是由 Angular 开发组维护的,但它也已经足够全面了。借助这些类型定义的帮助,它可以为 AngularJS.x 程序加上全面的类型注解。

The AngularJS 1.x type definitions you installed are not officially maintained by the Angular team, but are quite comprehensive. It is possible to make an AngularJS 1.x application fully type-annotated with the help of these definitions.

如果你想这么做,就在 tsconfig.json 中启用 noImplicitAny 配置项。 这样,如果遇到什么还没有类型注解的代码,TypeScript 编译器就会显示一个警告。 你可以用它作为指南,告诉你现在与一个完全类型化的项目距离还有多远。

If this is something you wanted to do, it would be a good idea to enable the noImplicitAny configuration option in tsconfig.json. This would cause the TypeScript compiler to display a warning when there's any code that does not yet have type annotations. You could use it as a guide to inform us about how close you are to having a fully annotated project.

你能用的另一个 TypeScript 特性是。具体来讲,你可以把控制器转换成类。 这种方式下,你离成为 Angular 组件类就又近了一步,它会令你的升级之路变得更简单。

Another TypeScript feature you can make use of is classes. In particular, you can turn component controllers into classes. That way they'll be a step closer to becoming Angular component classes, which will make life easier once you upgrade.

AngularJS 期望控制器是一个构造函数。这实际上就是 ES2015/TypeScript 中的类, 这也就意味着只要你把一个类注册为组件控制器,AngularJS 就会愉快的使用它。

AngularJS expects controllers to be constructor functions. That's exactly what ES2015/TypeScript classes are under the hood, so that means you can just plug in a class as a component controller and AngularJS will happily use it.

新的“电话列表(phone list)”组件控制器类是这样的:

Here's what the new class for the phone list component controller looks like:

class PhoneListController { phones: any[]; orderProp: string; query: string; static $inject = ['Phone']; constructor(Phone: any) { this.phones = Phone.query(); this.orderProp = 'age'; } } angular. module('phoneList'). component('phoneList', { templateUrl: 'phone-list/phone-list.template.html', controller: PhoneListController });
app/phone-list/phone-list.component.ts
      
      
  1. class PhoneListController {
  2. phones: any[];
  3. orderProp: string;
  4. query: string;
  5.  
  6. static $inject = ['Phone'];
  7. constructor(Phone: any) {
  8. this.phones = Phone.query();
  9. this.orderProp = 'age';
  10. }
  11.  
  12. }
  13.  
  14. angular.
  15. module('phoneList').
  16. component('phoneList', {
  17. templateUrl: 'phone-list/phone-list.template.html',
  18. controller: PhoneListController
  19. });

以前在控制器函数中实现的一切,现在都改由类的构造函数来实现了。类型注入注解通过静态属性 $inject 被附加到了类上。在运行时,它们变成了 PhoneListController.$inject

What was previously done in the controller function is now done in the class constructor function. The dependency injection annotations are attached to the class using a static property $inject. At runtime this becomes the PhoneListController.$inject property.

该类还声明了另外三个成员:电话列表、当前排序键的名字和搜索条件。 这些东西你以前就加到了控制器上,只是从来没有在任何地方显式定义过它们。最后一个成员从未真正在 TypeScript 代码中用过, 因为它只是在模板中被引用过。但为了清晰起见,你还是应该定义出此控制器应有的所有成员。

The class additionally declares three members: The array of phones, the name of the current sort key, and the search query. These are all things you have already been attaching to the controller but that weren't explicitly declared anywhere. The last one of these isn't actually used in the TypeScript code since it's only referred to in the template, but for the sake of clarity you should define all of the controller members.

在电话详情控制器中,你有两个成员:一个是用户正在查看的电话,另一个是正在显示的图像:

In the Phone detail controller, you'll have two members: One for the phone that the user is looking at and another for the URL of the currently displayed image:

class PhoneDetailController { phone: any; mainImageUrl: string; static $inject = ['$routeParams', 'Phone']; constructor($routeParams: angular.route.IRouteParamsService, Phone: any) { let phoneId = $routeParams['phoneId']; this.phone = Phone.get({phoneId}, (phone: any) => { this.setImage(phone.images[0]); }); } setImage(imageUrl: string) { this.mainImageUrl = imageUrl; } } angular. module('phoneDetail'). component('phoneDetail', { templateUrl: 'phone-detail/phone-detail.template.html', controller: PhoneDetailController });
app/phone-detail/phone-detail.component.ts
      
      
  1. class PhoneDetailController {
  2. phone: any;
  3. mainImageUrl: string;
  4.  
  5. static $inject = ['$routeParams', 'Phone'];
  6. constructor($routeParams: angular.route.IRouteParamsService, Phone: any) {
  7. let phoneId = $routeParams['phoneId'];
  8. this.phone = Phone.get({phoneId}, (phone: any) => {
  9. this.setImage(phone.images[0]);
  10. });
  11. }
  12.  
  13. setImage(imageUrl: string) {
  14. this.mainImageUrl = imageUrl;
  15. }
  16. }
  17.  
  18. angular.
  19. module('phoneDetail').
  20. component('phoneDetail', {
  21. templateUrl: 'phone-detail/phone-detail.template.html',
  22. controller: PhoneDetailController
  23. });

这已经让你的控制器代码看起来更像 Angular 了。你的准备工作做好了,可以引进 Angular 到项目中了。

This makes the controller code look a lot more like Angular already. You're all set to actually introduce Angular into the project.

如果项目中有任何 AngularJS 的服务,它们也是转换成类的优秀候选人,像控制器一样,它们也是构造函数。 但是在本项目中,你只有一个 Phone 工厂,这有点特别,因为它是一个 ngResource 工厂。 所以你不会在准备阶段中处理它,而是在下一节中直接把它转换成 Angular 服务。

If you had any AngularJS services in the project, those would also be a good candidate for converting to classes, since like controllers, they're also constructor functions. But you only have the Phone factory in this project, and that's a bit special since it's an ngResource factory. So you won't be doing anything to it in the preparation stage. You'll instead turn it directly into an Angular service.

安装 Angular

Installing Angular

准备工作做完了,接下来就开始把 PhoneCat 升级到 Angular。 你将在 Angular升级模块的帮助下增量式的完成此项工作。 做完这些之后,就能把 AngularJS 从项目中完全移除了,但其中的关键是在不破坏此程序的前提下一小块一小块的完成它。

Having completed the preparation work, get going with the Angular upgrade of PhoneCat. You'll do this incrementally with the help of ngUpgrade that comes with Angular. By the time you're done, you'll be able to remove AngularJS from the project completely, but the key is to do this piece by piece without breaking the application.

该项目还包含一些动画,在此指南的当前版本你先不升级它,请到 Angular 动画中进一步学习。

The project also contains some animations. You won't upgrade them in this version of the guide. Turn to the Angular animations guide to learn about that.

用 SystemJS 模块加载器把 Angular 安装到项目中。 看看搭建本地开发环境中的指南,并从那里获得如下配置:

Install Angular into the project, along with the SystemJS module loader. Take a look at the results of the Setup instructions and get the following configurations from there:

  • 把 Angular 和其它新依赖添加到 package.json

    Add Angular and the other new dependencies to package.json

  • 把 SystemJS 的配置文件 systemjs.config.js 添加到项目的根目录。

    The SystemJS configuration file systemjs.config.js to the project root directory.

这些完成之后,就运行:

Once these are done, run:

npm install
      
      npm install
    

很快你就可以通过 index.html 来把 Angular 的依赖快速加载到应用中, 但首先,你得做一些目录结构调整。这是因为你正准备从 node_modules 中加载文件,然而目前项目中的每一个文件都是从 /app 目录下加载的。

Soon you can load Angular dependencies into the application via index.html, but first you need to do some directory path adjustments. You'll need to load files from node_modules and the project root instead of from the /app directory as you've been doing to this point.

app/index.html 移入项目的根目录,然后把 package.json 中的开发服务器根目录也指向项目的根目录,而不再是 app 目录:

Move the app/index.html file to the project root directory. Then change the development server root path in package.json to also point to the project root instead of app:

"start": "http-server ./ -a localhost -p 8000 -c-1",
      
      "start": "http-server ./ -a localhost -p 8000 -c-1",
    

现在,你就能把项目根目录下的每一样东西发给浏览器了。但你不想为了适应开发环境中的设置,被迫修改应用代码中用到的所有图片和数据的路径。因此,你要往 index.html 中添加一个 <base> 标签,它将导致各种相对路径被解析回 /app 目录:

Now you're able to serve everything from the project root to the web browser. But you do not want to have to change all the image and data paths used in the application code to match the development setup. For that reason, you'll add a <base> tag to index.html, which will cause relative URLs to be resolved back to the /app directory:

<base href="/app/">
index.html
      
      <base href="/app/">
    

现在你可以通过 SystemJS 加载 Angular 了。你还要把 Angular 的腻子脚本(polyfills) 和 SystemJS 的配置加到 <head> 区的末尾,然后,你能就用 System.import 来加载实际的应用了:

Now you can load Angular via SystemJS. You'll add the Angular polyfills and the SystemJS config to the end of the <head> section, and then you'll use System.import to load the actual application:

<script src="/node_modules/core-js/client/shim.min.js"></script> <script src="/node_modules/zone.js/dist/zone.js"></script> <script src="/node_modules/systemjs/dist/system.src.js"></script> <script src="/systemjs.config.js"></script> <script> System.import('/app'); </script>
index.html
      
      <script src="/node_modules/core-js/client/shim.min.js"></script>
<script src="/node_modules/zone.js/dist/zone.js"></script>
<script src="/node_modules/systemjs/dist/system.src.js"></script>
<script src="/systemjs.config.js"></script>
<script>
  System.import('/app');
</script>
    

你还需要对搭建环境期间安装的 systemjs.config.js 文件做一些调整。

You also need to make a couple of adjustments to the systemjs.config.js file installed during setup.

在 SystemJS 加载期间为浏览器指出项目的根在哪里,而不再使用 <base> URL。

Point the browser to the project root when loading things through SystemJS, instead of using the <base> URL.

再通过 npm install @angular/upgrade --save 安装 upgrade 包,并为 @angular/upgrade/static 包添加一个映射。

Install the upgrade package via npm install @angular/upgrade --save and add a mapping for the @angular/upgrade/static package.

System.config({ paths: { // paths serve as alias 'npm:': '/node_modules/' }, map: { 'ng-loader': '../src/systemjs-angular-loader.js', app: '/app', /* . . . */ '@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js', /* . . . */ },
systemjs.config.js
      
      
  1. System.config({
  2. paths: {
  3. // paths serve as alias
  4. 'npm:': '/node_modules/'
  5. },
  6. map: {
  7. 'ng-loader': '../src/systemjs-angular-loader.js',
  8. app: '/app',
  9. /* . . . */
  10. '@angular/upgrade/static': 'npm:@angular/upgrade/bundles/upgrade-static.umd.js',
  11. /* . . . */
  12. },

创建 AppModule

Creating the AppModule

现在,创建一个名叫 AppModule 的根 NgModule 类。 这里已经有了一个名叫 app.module.ts 的文件,其中存放着 AngularJS 的模块。 把它改名为 app.module.ng1.ts,同时也要在 index.html 中修改对应的脚本名。 文件的内容保留:

Now create the root NgModule class called AppModule. There is already a file named app.module.ts that holds the AngularJS module. Rename it to app.module.ajs.ts and update the corresponding script name in the index.html as well. The file contents remain:

'use strict'; // Define the `phonecatApp` AngularJS module angular.module('phonecatApp', [ 'ngAnimate', 'ngRoute', 'core', 'phoneDetail', 'phoneList', ]);
app.module.ajs.ts
      
      'use strict';

// Define the `phonecatApp` AngularJS module
angular.module('phonecatApp', [
  'ngAnimate',
  'ngRoute',
  'core',
  'phoneDetail',
  'phoneList',
]);
    

然后创建一个新的 app.module.ts 文件,其中是一个最小化的 NgModule 类:

Now create a new app.module.ts with the minimum NgModule class:

import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; @NgModule({ imports: [ BrowserModule, ], }) export class AppModule { }
app.module.ts
      
      import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

@NgModule({
  imports: [
    BrowserModule,
  ],
})
export class AppModule {
}
    

引导 PhoneCat 的混合式应用

Bootstrapping a hybrid PhoneCat

接下来,你把该应用程序引导改装为一个同时支持 AngularJS 和 Angular 的混合式应用。 然后,就能开始把这些不可分割的小块转换到 Angular 了。

Next, you'll bootstrap the application as a hybrid application that supports both AngularJS and Angular components. After that, you can start converting the individual pieces to Angular.

本应用现在是使用宿主页面中附加到 <html> 元素上的 AngularJS 指令 ng-app 引导的。 但在混合式应用中,不能再这么用了。你得用ngUpgrade bootstrap方法代替。

The application is currently bootstrapped using the AngularJS ng-app directive attached to the <html> element of the host page. This will no longer work in the hybrid app. Switch to the ngUpgrade bootstrap method instead.

首先,从 index.html 中移除 ng-app。然后在 AppModule 中导入 UpgradeModule,并改写它的 ngDoBootstrap 方法:

First, remove the ng-app attribute from index.html. Then import UpgradeModule in the AppModule, and override its ngDoBootstrap method:

import { UpgradeModule } from '@angular/upgrade/static'; @NgModule({ imports: [ BrowserModule, UpgradeModule, ], }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.documentElement, ['phonecatApp']); } }
app/app.module.ts
      
      
  1. import { UpgradeModule } from '@angular/upgrade/static';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule,
  7. ],
  8. })
  9. export class AppModule {
  10. constructor(private upgrade: UpgradeModule) { }
  11. ngDoBootstrap() {
  12. this.upgrade.bootstrap(document.documentElement, ['phonecatApp']);
  13. }
  14. }

注意,你正在从内部的 ngDoBootstrap 中引导 AngularJS 模块。 它的参数和你在手动引导 AngularJS 时传给 angular.bootstrap 的是一样的:应用的根元素,和所要加载的 AngularJS 1.x 模块的数组。

Note that you are bootstrapping the AngularJS module from inside ngDoBootstrap. The arguments are the same as you would pass to angular.bootstrap if you were manually bootstrapping AngularJS: the root element of the application; and an array of the AngularJS 1.x modules that you want to load.

最后,在 app/main.ts 中引导这个 AppModule。该文件在 systemjs.config.js 中被配置为了应用的入口,所以它已经被加载进了浏览器中。

Finally, bootstrap the AppModule in app/main.ts. This file has been configured as the application entrypoint in systemjs.config.js, so it is already being loaded by the browser.

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app.module'; platformBrowserDynamic().bootstrapModule(AppModule);
app/main.ts
      
      import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';

platformBrowserDynamic().bootstrapModule(AppModule);
    

现在,你同时运行着 AngularJS 和 Angular。漂亮!不过你还没有运行什么实际的 Angular 组件,这就是接下来要做的。

Now you're running both AngularJS and Angular at the same time. That's pretty exciting! You're not running any actual Angular components yet. That's next.

为何要声明 angularangular.IAngularStatic

Why declare angular as angular.IAngularStatic?

@types/angular 声明为 UMD 模块,根据UMD 类型 的工作方式,一旦你在文件中有一条 ES6 的 import 语句,所有的 UMD 类型化的模型必须都通过 import 语句导入, 而是不是全局可用。

@types/angular is declared as a UMD module, and due to the way UMD typings work, once you have an ES6 import statement in a file all UMD typed modules must also be imported via import statements instead of being globally available.

AngularJS 是日前是通过 index.html 中的 script 标签加载,这意味着整个应用是作为一个全局变量进行访问的, 使用同一个 angular 变量的实例。 但如果你使用 import * as angular from 'angular',我还需要彻底修改 AngularJS 应用中加载每个文件的方式, 确保 AngularJS 应用被正确加载。

AngularJS is currently loaded by a script tag in index.html, which means that the whole app has access to it as a global and uses the same instance of the angular variable. If you used import * as angular from 'angular' instead, you'd also have to load every file in the AngularJS app to use ES2015 modules in order to ensure AngularJS was being loaded correctly.

这需要相当多的努力,通常也不值得去做,特别是当你正在朝着 Angular 前进时。 但如果你把 angular 声明为 angular.IAngularStatic,指明它是一个全局变量, 仍然可以获得全面的类型支持。

This is a considerable effort and it often isn't worth it, especially since you are in the process of moving your code to Angular. Instead, declare angular as angular.IAngularStatic to indicate it is a global variable and still have full typing support.

升级 Phone 服务

Upgrading the Phone service

你要移植到 Angular 的第一个片段是 Phone 工厂(位于 app/js/core/phones.factory.ts), 并且让它能帮助控制器从服务器上加载电话信息。目前,它是用 ngResource 实现的,你用它做两件事:

The first piece you'll port over to Angular is the Phone service, which resides in app/core/phone/phone.service.ts and makes it possible for components to load phone information from the server. Right now it's implemented with ngResource and you're using it for two things:

  • 把所有电话的列表加载到电话列表组件中。

    For loading the list of all phones into the phone list component.

  • 把一台电话的详情加载到电话详情组件中。

    For loading the details of a single phone into the phone detail component.

你可以用 Angular 的服务类来替换这个实现,而把控制器继续留在 AngularJS 的地盘上。

You can replace this implementation with an Angular service class, while keeping the controllers in AngularJS land.

在这个新版本中,你导入了 Angular 的 HTTP 模块,并且用它的 Http 服务替换掉 NgResource

In the new version, you import the Angular HTTP module and call its Http service instead of ngResource.

再次打开 app.module.ts 文件,导入并把 HttpModule 添加到 AppModuleimports 数组中:

Re-open the app.module.ts file, import and add HttpModule to the imports array of the AppModule:

import { HttpModule } from '@angular/http'; @NgModule({ imports: [ BrowserModule, UpgradeModule, HttpModule, ], }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.documentElement, ['phonecatApp']); } }
app.module.ts
      
      
  1. import { HttpModule } from '@angular/http';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule,
  7. HttpModule,
  8. ],
  9. })
  10. export class AppModule {
  11. constructor(private upgrade: UpgradeModule) { }
  12. ngDoBootstrap() {
  13. this.upgrade.bootstrap(document.documentElement, ['phonecatApp']);
  14. }
  15. }

现在,你已经准备好了升级 Phones 服务本身。你将为 phone.service.ts 文件中基于 ngResource 的服务加上 @Injectable 装饰器:

Now you're ready to upgrade the Phone service itself. Replace the ngResource-based service in phone.service.ts with a TypeScript class decorated as @Injectable:

@Injectable() export class Phone { /* . . . */ }
app/core/phone/phone.service.ts (skeleton)
      
      @Injectable()
export class Phone {
/* . . . */
}
    

@Injectable 装饰器将把一些依赖注入相关的元数据附加到该类上,让 Angular 知道它的依赖信息。 就像在依赖注入指南中描述过的那样, 这是一个标记装饰器,你要把它用在那些没有其它 Angular 装饰器,并且自己有依赖注入的类上。

The @Injectable decorator will attach some dependency injection metadata to the class, letting Angular know about its dependencies. As described by the Dependency Injection Guide, this is a marker decorator you need to use for classes that have no other Angular decorators but still need to have their dependencies injected.

在它的构造函数中,该类期待一个 Http 服务。Http 服务将被注入进来并存入一个私有字段。 然后该服务在两个实例方法中被使用到,一个加载所有电话的列表,另一个加载一台指定电话的详情:

In its constructor the class expects to get the Http service. It will be injected to it and it is stored as a private field. The service is then used in the two instance methods, one of which loads the list of all phones, and the other loads the details of a specified phone:

@Injectable() export class Phone { constructor(private http: Http) { } query(): Observable<PhoneData[]> { return this.http.get(`phones/phones.json`).pipe( map((res: Response) => res.json()) ); } get(id: string): Observable<PhoneData> { return this.http.get(`phones/${id}.json`).pipe( map((res: Response) => res.json()) ); } }
app/core/phone/phone.service.ts
      
      
  1. @Injectable()
  2. export class Phone {
  3. constructor(private http: Http) { }
  4. query(): Observable<PhoneData[]> {
  5. return this.http.get(`phones/phones.json`).pipe(
  6. map((res: Response) => res.json())
  7. );
  8. }
  9. get(id: string): Observable<PhoneData> {
  10. return this.http.get(`phones/${id}.json`).pipe(
  11. map((res: Response) => res.json())
  12. );
  13. }
  14. }

该方法现在返回一个 Phone 类型或 Phone[] 类型的可观察对象(Observable)。 这是一个你从未用过的类型,因此你得为它新增一个简单的接口:

The methods now return observables of type PhoneData and PhoneData[]. This is a type you don't have yet. Add a simple interface for it:

export interface PhoneData { name: string; snippet: string; images: string[]; }
app/core/phone/phone.service.ts (interface)
      
      export interface PhoneData {
  name: string;
  snippet: string;
  images: string[];
}
    

@angular/upgrade/static 有一个 downgradeInjectable 方法,可以使 Angular 服务在 AngularJS 的代码中可用。 使用它来插入 Phone 服务:

@angular/upgrade/static has a downgradeInjectable method for the purpose of making Angular services available to AngularJS code. Use it to plug in the Phone service:

declare var angular: angular.IAngularStatic; import { downgradeInjectable } from '@angular/upgrade/static'; /* . . . */ @Injectable() export class Phone { /* . . . */ } angular.module('core.phone') .factory('phone', downgradeInjectable(Phone));
app/core/phone/phone.service.ts (downgrade)
      
      declare var angular: angular.IAngularStatic;
import { downgradeInjectable } from '@angular/upgrade/static';
/* . . . */
@Injectable()
export class Phone {
/* . . . */
}

angular.module('core.phone')
  .factory('phone', downgradeInjectable(Phone));
    

最终,该类的全部代码如下:

Here's the full, final code for the service:

import { Injectable } from '@angular/core'; import { Http, Response } from '@angular/http'; import { Observable } from 'rxjs'; import { map } from 'rxjs/operators'; declare var angular: angular.IAngularStatic; import { downgradeInjectable } from '@angular/upgrade/static'; export interface PhoneData { name: string; snippet: string; images: string[]; } @Injectable() export class Phone { constructor(private http: Http) { } query(): Observable<PhoneData[]> { return this.http.get(`phones/phones.json`).pipe( map((res: Response) => res.json()) ); } get(id: string): Observable<PhoneData> { return this.http.get(`phones/${id}.json`).pipe( map((res: Response) => res.json()) ); } } angular.module('core.phone') .factory('phone', downgradeInjectable(Phone));
app/core/phone/phone.service.ts
      
      
  1. import { Injectable } from '@angular/core';
  2. import { Http, Response } from '@angular/http';
  3. import { Observable } from 'rxjs';
  4. import { map } from 'rxjs/operators';
  5.  
  6. declare var angular: angular.IAngularStatic;
  7. import { downgradeInjectable } from '@angular/upgrade/static';
  8.  
  9. export interface PhoneData {
  10. name: string;
  11. snippet: string;
  12. images: string[];
  13. }
  14.  
  15. @Injectable()
  16. export class Phone {
  17. constructor(private http: Http) { }
  18. query(): Observable<PhoneData[]> {
  19. return this.http.get(`phones/phones.json`).pipe(
  20. map((res: Response) => res.json())
  21. );
  22. }
  23. get(id: string): Observable<PhoneData> {
  24. return this.http.get(`phones/${id}.json`).pipe(
  25. map((res: Response) => res.json())
  26. );
  27. }
  28. }
  29.  
  30. angular.module('core.phone')
  31. .factory('phone', downgradeInjectable(Phone));

注意,你要单独导入了 RxJS Observable 中的 map 操作符。 对每个 RxJS 操作符都要这么做。

Notice that you're importing the map operator of the RxJS Observable separately. Do this for every RxJS operator.

这个新的 Phone 服务具有和老的基于 ngResource 的服务相同的特性。 因为它是 Angular 服务,你通过 NgModuleproviders 数组来注册它:

The new Phone service has the same features as the original, ngResource-based service. Because it's an Angular service, you register it with the NgModule providers:

import { Phone } from './core/phone/phone.service'; @NgModule({ imports: [ BrowserModule, UpgradeModule, HttpModule, ], providers: [ Phone, ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.documentElement, ['phonecatApp']); } }
app.module.ts
      
      
  1. import { Phone } from './core/phone/phone.service';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule,
  7. HttpModule,
  8. ],
  9. providers: [
  10. Phone,
  11. ]
  12. })
  13. export class AppModule {
  14. constructor(private upgrade: UpgradeModule) { }
  15. ngDoBootstrap() {
  16. this.upgrade.bootstrap(document.documentElement, ['phonecatApp']);
  17. }
  18. }

现在,你正在用 SystemJS 加载 phone.service.ts,你应该从 index.html移除该服务的 <script> 标签。 这也是你在升级所有组件时将会做的事。在从 AngularJS 向 Angular 升级的同时,你也把代码从脚本移植为模块。

Now that you are loading phone.service.ts through an import that is resolved by SystemJS, you should remove the <script> tag for the service from index.html. This is something you'll do to all components as you upgrade them. Simultaneously with the AngularJS to Angular upgrade you're also migrating code from scripts to modules.

这时,你可以把两个控制器从使用老的服务切换成使用新的。你像降级过的 phones 工厂一样 $inject 它, 但它实际上是一个 Phones 类的实例,并且你可以据此注解它的类型:

At this point, you can switch the two components to use the new service instead of the old one. While you $inject it as the downgraded phone factory, it's really an instance of the Phone class and you annotate its type accordingly:

declare var angular: angular.IAngularStatic; import { Phone, PhoneData } from '../core/phone/phone.service'; class PhoneListController { phones: PhoneData[]; orderProp: string; static $inject = ['phone']; constructor(phone: Phone) { phone.query().subscribe(phones => { this.phones = phones; }); this.orderProp = 'age'; } } angular. module('phoneList'). component('phoneList', { templateUrl: 'app/phone-list/phone-list.template.html', controller: PhoneListController });
app/phone-list/phone-list.component.ts
      
      
  1. declare var angular: angular.IAngularStatic;
  2. import { Phone, PhoneData } from '../core/phone/phone.service';
  3.  
  4. class PhoneListController {
  5. phones: PhoneData[];
  6. orderProp: string;
  7.  
  8. static $inject = ['phone'];
  9. constructor(phone: Phone) {
  10. phone.query().subscribe(phones => {
  11. this.phones = phones;
  12. });
  13. this.orderProp = 'age';
  14. }
  15.  
  16. }
  17.  
  18. angular.
  19. module('phoneList').
  20. component('phoneList', {
  21. templateUrl: 'app/phone-list/phone-list.template.html',
  22. controller: PhoneListController
  23. });
declare var angular: angular.IAngularStatic; import { Phone, PhoneData } from '../core/phone/phone.service'; class PhoneDetailController { phone: PhoneData; mainImageUrl: string; static $inject = ['$routeParams', 'phone']; constructor($routeParams: angular.route.IRouteParamsService, phone: Phone) { let phoneId = $routeParams['phoneId']; phone.get(phoneId).subscribe(data => { this.phone = data; this.setImage(data.images[0]); }); } setImage(imageUrl: string) { this.mainImageUrl = imageUrl; } } angular. module('phoneDetail'). component('phoneDetail', { templateUrl: 'phone-detail/phone-detail.template.html', controller: PhoneDetailController });
app/phone-detail/phone-detail.component.ts
      
      
  1. declare var angular: angular.IAngularStatic;
  2. import { Phone, PhoneData } from '../core/phone/phone.service';
  3.  
  4. class PhoneDetailController {
  5. phone: PhoneData;
  6. mainImageUrl: string;
  7.  
  8. static $inject = ['$routeParams', 'phone'];
  9. constructor($routeParams: angular.route.IRouteParamsService, phone: Phone) {
  10. let phoneId = $routeParams['phoneId'];
  11. phone.get(phoneId).subscribe(data => {
  12. this.phone = data;
  13. this.setImage(data.images[0]);
  14. });
  15. }
  16.  
  17. setImage(imageUrl: string) {
  18. this.mainImageUrl = imageUrl;
  19. }
  20. }
  21.  
  22. angular.
  23. module('phoneDetail').
  24. component('phoneDetail', {
  25. templateUrl: 'phone-detail/phone-detail.template.html',
  26. controller: PhoneDetailController
  27. });

这里的两个 AngularJS 控制器在使用 Angular 的服务!控制器不需要关心这一点,尽管实际上该服务返回的是可观察对象(Observable),而不是承诺(Promise)。 无论如何,你达到的效果都是把服务移植到 Angular,而不用被迫移植组件来使用它。

Now there are two AngularJS components using an Angular service! The components don't need to be aware of this, though the fact that the service returns observables and not promises is a bit of a giveaway. In any case, what you've achieved is a migration of a service to Angular without having to yet migrate the components that use it.

你也能使用 ObservabletoPromise 方法来在服务中把这些可观察对象转变成承诺,以进一步减小组件控制器中需要修改的代码量。

You could use the toPromise method of Observable to turn those observables into promises in the service. In many cases that reduce the number of changes to the component controllers.

升级组件

Upgrading Components

接下来,把 AngularJS 的控制器升级成 Angular 的组件。每次升级一个,同时仍然保持应用运行在混合模式下。 在做转换的同时,你还将自定义首个 Angular管道

Upgrade the AngularJS components to Angular components next. Do it one component at a time while still keeping the application in hybrid mode. As you make these conversions, you'll also define your first Angular pipes.

先看看电话列表组件。它目前包含一个 TypeScript 控制器类和一个组件定义对象。重命名控制器类, 并把 AngularJS 的组件定义对象更换为 Angular @Component 装饰器,这样你就把它变形为 Angular 的组件了。然后,你还要从类中移除静态 $inject 属性。

Look at the phone list component first. Right now it contains a TypeScript controller class and a component definition object. You can morph this into an Angular component by just renaming the controller class and turning the AngularJS component definition object into an Angular @Component decorator. You can then also remove the static $inject property from the class:

import { Component } from '@angular/core'; import { Phone, PhoneData } from '../core/phone/phone.service'; @Component({ selector: 'phone-list', templateUrl: './phone-list.template.html' }) export class PhoneListComponent { phones: PhoneData[]; query: string; orderProp: string; constructor(phone: Phone) { phone.query().subscribe(phones => { this.phones = phones; }); this.orderProp = 'age'; } /* . . . */ }
app/phone-list/phone-list.component.ts
      
      
  1. import { Component } from '@angular/core';
  2. import { Phone, PhoneData } from '../core/phone/phone.service';
  3.  
  4. @Component({
  5. selector: 'phone-list',
  6. templateUrl: './phone-list.template.html'
  7. })
  8. export class PhoneListComponent {
  9. phones: PhoneData[];
  10. query: string;
  11. orderProp: string;
  12.  
  13. constructor(phone: Phone) {
  14. phone.query().subscribe(phones => {
  15. this.phones = phones;
  16. });
  17. this.orderProp = 'age';
  18. }
  19. /* . . . */
  20. }

selector 属性是一个 CSS 选择器,用来定义组件应该被放在页面的哪。在 AngularJS 中,你会基于组件名字来匹配, 但是在 Angular 中,你要显式指定这些选择器。本组件将会对应元素名字 phone-list,和 AngularJS 版本一样。

The selector attribute is a CSS selector that defines where on the page the component should go. In AngularJS you do matching based on component names, but in Angular you have these explicit selectors. This one will match elements with the name phone-list, just like the AngularJS version did.

现在,将组件的模版也转换为 Angular 语法。在搜索控件中,把 AngularJS 的 $ctrl 表达式替换成 Angular 的双向绑定语法 [(ngModel)]

Now convert the template of this component into Angular syntax. The search controls replace the AngularJS $ctrl expressions with Angular's two-way [(ngModel)] binding syntax:

<p> Search: <input [(ngModel)]="query" /> </p> <p> Sort by: <select [(ngModel)]="orderProp"> <option value="name">Alphabetical</option> <option value="age">Newest</option> </select> </p>
app/phone-list/phone-list.template.html (search controls)
      
      <p>
  Search:
  <input [(ngModel)]="query" />
</p>

<p>
  Sort by:
  <select [(ngModel)]="orderProp">
    <option value="name">Alphabetical</option>
    <option value="age">Newest</option>
  </select>
</p>
    

把列表中的 ng-repeat 替换为 *ngFor 以及它的 let var of iterable 语法, 该语法在模板语法指南中讲过。 再把 img 标签的 ng-src 替换为一个标准的 src 属性(property)绑定。

Replace the list's ng-repeat with an *ngFor as described in the Template Syntax page. Replace the image tag's ng-src with a binding to the native src property.

<ul class="phones"> <li *ngFor="let phone of getPhones()" class="thumbnail phone-list-item"> <a href="/#!/phones/{{phone.id}}" class="thumb"> <img [src]="phone.imageUrl" [alt]="phone.name" /> </a> <a href="/#!/phones/{{phone.id}}" class="name">{{phone.name}}</a> <p>{{phone.snippet}}</p> </li> </ul>
app/phone-list/phone-list.template.html (phones)
      
      <ul class="phones">
  <li *ngFor="let phone of getPhones()"
      class="thumbnail phone-list-item">
    <a href="/#!/phones/{{phone.id}}" class="thumb">
      <img [src]="phone.imageUrl" [alt]="phone.name" />
    </a>
    <a href="/#!/phones/{{phone.id}}" class="name">{{phone.name}}</a>
    <p>{{phone.snippet}}</p>
  </li>
</ul>
    

Angular 中没有 filterorderBy 过滤器

No Angular filter or orderBy filters

Angular 中并不存在 AngularJS 中内置的 filterorderBy 过滤器。 所以你得自己实现进行过滤和排序。

The built-in AngularJS filter and orderBy filters do not exist in Angular, so you need to do the filtering and sorting yourself.

你把 filterorderBy 过滤器改成绑定到控制器中的 getPhones() 方法,通过该方法,组件本身实现了过滤和排序逻辑。

You replaced the filter and orderBy filters with bindings to the getPhones() controller method, which implements the filtering and ordering logic inside the component itself.

getPhones(): PhoneData[] { return this.sortPhones(this.filterPhones(this.phones)); } private filterPhones(phones: PhoneData[]) { if (phones && this.query) { return phones.filter(phone => { let name = phone.name.toLowerCase(); let snippet = phone.snippet.toLowerCase(); return name.indexOf(this.query) >= 0 || snippet.indexOf(this.query) >= 0; }); } return phones; } private sortPhones(phones: PhoneData[]) { if (phones && this.orderProp) { return phones .slice(0) // Make a copy .sort((a, b) => { if (a[this.orderProp] < b[this.orderProp]) { return -1; } else if ([b[this.orderProp] < a[this.orderProp]]) { return 1; } else { return 0; } }); } return phones; }
app/phone-list/phone-list.component.ts
      
      
  1. getPhones(): PhoneData[] {
  2. return this.sortPhones(this.filterPhones(this.phones));
  3. }
  4.  
  5. private filterPhones(phones: PhoneData[]) {
  6. if (phones && this.query) {
  7. return phones.filter(phone => {
  8. let name = phone.name.toLowerCase();
  9. let snippet = phone.snippet.toLowerCase();
  10. return name.indexOf(this.query) >= 0 || snippet.indexOf(this.query) >= 0;
  11. });
  12. }
  13. return phones;
  14. }
  15.  
  16. private sortPhones(phones: PhoneData[]) {
  17. if (phones && this.orderProp) {
  18. return phones
  19. .slice(0) // Make a copy
  20. .sort((a, b) => {
  21. if (a[this.orderProp] < b[this.orderProp]) {
  22. return -1;
  23. } else if ([b[this.orderProp] < a[this.orderProp]]) {
  24. return 1;
  25. } else {
  26. return 0;
  27. }
  28. });
  29. }
  30. return phones;
  31. }

现在你需要降级你的 Angular 组件,这样你就可以在 AngularJS 中使用它了。 你要注册一个 phoneList指令,而不是注册一个组件,它是一个降级版的 Angular 组件。

Now you need to downgrade the Angular component so you can use it in AngularJS. Instead of registering a component, you register a phoneList directive, a downgraded version of the Angular component.

强制类型转换 as angular.IDirectiveFactory 告诉 TypeScript 编译器 downgradeComponent 方法 的返回值是一个指令工厂。

The as angular.IDirectiveFactory cast tells the TypeScript compiler that the return value of the downgradeComponent method is a directive factory.

declare var angular: angular.IAngularStatic; import { downgradeComponent } from '@angular/upgrade/static'; /* . . . */ @Component({ selector: 'phone-list', templateUrl: './phone-list.template.html' }) export class PhoneListComponent { /* . . . */ } angular.module('phoneList') .directive( 'phoneList', downgradeComponent({component: PhoneListComponent}) as angular.IDirectiveFactory );
app/phone-list/phone-list.component.ts
      
      
  1. declare var angular: angular.IAngularStatic;
  2. import { downgradeComponent } from '@angular/upgrade/static';
  3.  
  4. /* . . . */
  5. @Component({
  6. selector: 'phone-list',
  7. templateUrl: './phone-list.template.html'
  8. })
  9. export class PhoneListComponent {
  10. /* . . . */
  11. }
  12.  
  13. angular.module('phoneList')
  14. .directive(
  15. 'phoneList',
  16. downgradeComponent({component: PhoneListComponent}) as angular.IDirectiveFactory
  17. );

新的 PhoneListComponent 使用 Angular 的 ngModel 指令,它位于 FormsModule 中。 把 FormsModule 添加到 NgModuleimports 中,并声明新的 PhoneListComponent 组件, 最后,把降级的结果添加到 entryComponents中:

The new PhoneListComponent uses the Angular ngModel directive, located in the FormsModule. Add the FormsModule to NgModule imports, declare the new PhoneListComponent and finally add it to entryComponents since you downgraded it:

import { FormsModule } from '@angular/forms'; import { PhoneListComponent } from './phone-list/phone-list.component'; @NgModule({ imports: [ BrowserModule, UpgradeModule, HttpModule, FormsModule, ], declarations: [ PhoneListComponent, ], entryComponents: [ PhoneListComponent, }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.documentElement, ['phonecatApp']); } }
app.module.ts
      
      
  1. import { FormsModule } from '@angular/forms';
  2. import { PhoneListComponent } from './phone-list/phone-list.component';
  3.  
  4. @NgModule({
  5. imports: [
  6. BrowserModule,
  7. UpgradeModule,
  8. HttpModule,
  9. FormsModule,
  10. ],
  11. declarations: [
  12. PhoneListComponent,
  13. ],
  14. entryComponents: [
  15. PhoneListComponent,
  16. })
  17. export class AppModule {
  18. constructor(private upgrade: UpgradeModule) { }
  19. ngDoBootstrap() {
  20. this.upgrade.bootstrap(document.documentElement, ['phonecatApp']);
  21. }
  22. }

index.html 中移除电话列表组件的<script>标签。

Remove the <script> tag for the phone list component from index.html.

现在,剩下的 phone-detail.component.ts 文件变成了这样:

Now set the remaining phone-detail.component.ts as follows:

declare var angular: angular.IAngularStatic; import { downgradeComponent } from '@angular/upgrade/static'; import { Component } from '@angular/core'; import { Phone, PhoneData } from '../core/phone/phone.service'; import { RouteParams } from '../ajs-upgraded-providers'; @Component({ selector: 'phone-detail', templateUrl: './phone-detail.template.html', }) export class PhoneDetailComponent { phone: PhoneData; mainImageUrl: string; constructor(routeParams: RouteParams, phone: Phone) { phone.get(routeParams['phoneId']).subscribe(phone => { this.phone = phone; this.setImage(phone.images[0]); }); } setImage(imageUrl: string) { this.mainImageUrl = imageUrl; } } angular.module('phoneDetail') .directive( 'phoneDetail', downgradeComponent({component: PhoneDetailComponent}) as angular.IDirectiveFactory );
app/phone-detail/phone-detail.component.ts
      
      
  1. declare var angular: angular.IAngularStatic;
  2. import { downgradeComponent } from '@angular/upgrade/static';
  3.  
  4. import { Component } from '@angular/core';
  5.  
  6. import { Phone, PhoneData } from '../core/phone/phone.service';
  7. import { RouteParams } from '../ajs-upgraded-providers';
  8.  
  9. @Component({
  10. selector: 'phone-detail',
  11. templateUrl: './phone-detail.template.html',
  12. })
  13. export class PhoneDetailComponent {
  14. phone: PhoneData;
  15. mainImageUrl: string;
  16.  
  17. constructor(routeParams: RouteParams, phone: Phone) {
  18. phone.get(routeParams['phoneId']).subscribe(phone => {
  19. this.phone = phone;
  20. this.setImage(phone.images[0]);
  21. });
  22. }
  23.  
  24. setImage(imageUrl: string) {
  25. this.mainImageUrl = imageUrl;
  26. }
  27. }
  28.  
  29. angular.module('phoneDetail')
  30. .directive(
  31. 'phoneDetail',
  32. downgradeComponent({component: PhoneDetailComponent}) as angular.IDirectiveFactory
  33. );

这和电话列表组件很相似。 这里的窍门在于 @Inject 装饰器,它标记出了 $routeParams 依赖。

This is similar to the phone list component. The new wrinkle is the RouteParams type annotation that identifies the routeParams dependency.

AngularJS 注入器具有 AngularJS 路由器的依赖,叫做 $routeParams。 它被注入到了 PhoneDetails 中,但 PhoneDetails 现在还是一个 AngularJS 控制器。 你要把它注入到新的 PhoneDetailsComponent 中。

The AngularJS injector has an AngularJS router dependency called $routeParams, which was injected into PhoneDetails when it was still an AngularJS controller. You intend to inject it into the new PhoneDetailsComponent.

不幸的是,AngularJS 的依赖不会自动在 Angular 的组件中可用。 你必须使用工厂提供商(factory provider) 来把 $routeParams 包装成 Angular 的服务提供商。 新建一个名叫 ajs-upgraded-providers.ts 的文件,并且在 app.module.ts 中导入它:

Unfortunately, AngularJS dependencies are not automatically available to Angular components. You must upgrade this service via a factory provider to make $routeParams an Angular injectable. Do that in a new file called ajs-upgraded-providers.ts and import it in app.module.ts:

export abstract class RouteParams { [key: string]: string; } export function routeParamsFactory(i: any) { return i.get('$routeParams'); } export const routeParamsProvider = { provide: RouteParams, useFactory: routeParamsFactory, deps: ['$injector'] };
app/ajs-upgraded-providers.ts
      
      
  1. export abstract class RouteParams {
  2. [key: string]: string;
  3. }
  4.  
  5. export function routeParamsFactory(i: any) {
  6. return i.get('$routeParams');
  7. }
  8.  
  9. export const routeParamsProvider = {
  10. provide: RouteParams,
  11. useFactory: routeParamsFactory,
  12. deps: ['$injector']
  13. };
import { routeParamsProvider } from './ajs-upgraded-providers'; providers: [ Phone, routeParamsProvider ]
app/app.module.ts ($routeParams)
      
      import { routeParamsProvider } from './ajs-upgraded-providers';
  providers: [
    Phone,
    routeParamsProvider
  ]
    

把该组件的模板转变成 Angular 的语法,代码如下:

Convert the phone detail component template into Angular syntax as follows:

<div *ngIf="phone"> <div class="phone-images"> <img [src]="img" class="phone" [ngClass]="{'selected': img === mainImageUrl}" *ngFor="let img of phone.images" /> </div> <h1>{{phone.name}}</h1> <p>{{phone.description}}</p> <ul class="phone-thumbs"> <li *ngFor="let img of phone.images"> <img [src]="img" (click)="setImage(img)" /> </li> </ul> <ul class="specs"> <li> <span>Availability and Networks</span> <dl> <dt>Availability</dt> <dd *ngFor="let availability of phone.availability">{{availability}}</dd> </dl> </li> <li> <span>Battery</span> <dl> <dt>Type</dt> <dd>{{phone.battery?.type}}</dd> <dt>Talk Time</dt> <dd>{{phone.battery?.talkTime}}</dd> <dt>Standby time (max)</dt> <dd>{{phone.battery?.standbyTime}}</dd> </dl> </li> <li> <span>Storage and Memory</span> <dl> <dt>RAM</dt> <dd>{{phone.storage?.ram}}</dd> <dt>Internal Storage</dt> <dd>{{phone.storage?.flash}}</dd> </dl> </li> <li> <span>Connectivity</span> <dl> <dt>Network Support</dt> <dd>{{phone.connectivity?.cell}}</dd> <dt>WiFi</dt> <dd>{{phone.connectivity?.wifi}}</dd> <dt>Bluetooth</dt> <dd>{{phone.connectivity?.bluetooth}}</dd> <dt>Infrared</dt> <dd>{{phone.connectivity?.infrared | checkmark}}</dd> <dt>GPS</dt> <dd>{{phone.connectivity?.gps | checkmark}}</dd> </dl> </li> <li> <span>Android</span> <dl> <dt>OS Version</dt> <dd>{{phone.android?.os}}</dd> <dt>UI</dt> <dd>{{phone.android?.ui}}</dd> </dl> </li> <li> <span>Size and Weight</span> <dl> <dt>Dimensions</dt> <dd *ngFor="let dim of phone.sizeAndWeight?.dimensions">{{dim}}</dd> <dt>Weight</dt> <dd>{{phone.sizeAndWeight?.weight}}</dd> </dl> </li> <li> <span>Display</span> <dl> <dt>Screen size</dt> <dd>{{phone.display?.screenSize}}</dd> <dt>Screen resolution</dt> <dd>{{phone.display?.screenResolution}}</dd> <dt>Touch screen</dt> <dd>{{phone.display?.touchScreen | checkmark}}</dd> </dl> </li> <li> <span>Hardware</span> <dl> <dt>CPU</dt> <dd>{{phone.hardware?.cpu}}</dd> <dt>USB</dt> <dd>{{phone.hardware?.usb}}</dd> <dt>Audio / headphone jack</dt> <dd>{{phone.hardware?.audioJack}}</dd> <dt>FM Radio</dt> <dd>{{phone.hardware?.fmRadio | checkmark}}</dd> <dt>Accelerometer</dt> <dd>{{phone.hardware?.accelerometer | checkmark}}</dd> </dl> </li> <li> <span>Camera</span> <dl> <dt>Primary</dt> <dd>{{phone.camera?.primary}}</dd> <dt>Features</dt> <dd>{{phone.camera?.features?.join(', ')}}</dd> </dl> </li> <li> <span>Additional Features</span> <dd>{{phone.additionalFeatures}}</dd> </li> </ul> </div>
app/phone-detail/phone-detail.template.html
      
      
  1. <div *ngIf="phone">
  2. <div class="phone-images">
  3. <img [src]="img" class="phone"
  4. [ngClass]="{'selected': img === mainImageUrl}"
  5. *ngFor="let img of phone.images" />
  6. </div>
  7.  
  8. <h1>{{phone.name}}</h1>
  9.  
  10. <p>{{phone.description}}</p>
  11.  
  12. <ul class="phone-thumbs">
  13. <li *ngFor="let img of phone.images">
  14. <img [src]="img" (click)="setImage(img)" />
  15. </li>
  16. </ul>
  17.  
  18. <ul class="specs">
  19. <li>
  20. <span>Availability and Networks</span>
  21. <dl>
  22. <dt>Availability</dt>
  23. <dd *ngFor="let availability of phone.availability">{{availability}}</dd>
  24. </dl>
  25. </li>
  26. <li>
  27. <span>Battery</span>
  28. <dl>
  29. <dt>Type</dt>
  30. <dd>{{phone.battery?.type}}</dd>
  31. <dt>Talk Time</dt>
  32. <dd>{{phone.battery?.talkTime}}</dd>
  33. <dt>Standby time (max)</dt>
  34. <dd>{{phone.battery?.standbyTime}}</dd>
  35. </dl>
  36. </li>
  37. <li>
  38. <span>Storage and Memory</span>
  39. <dl>
  40. <dt>RAM</dt>
  41. <dd>{{phone.storage?.ram}}</dd>
  42. <dt>Internal Storage</dt>
  43. <dd>{{phone.storage?.flash}}</dd>
  44. </dl>
  45. </li>
  46. <li>
  47. <span>Connectivity</span>
  48. <dl>
  49. <dt>Network Support</dt>
  50. <dd>{{phone.connectivity?.cell}}</dd>
  51. <dt>WiFi</dt>
  52. <dd>{{phone.connectivity?.wifi}}</dd>
  53. <dt>Bluetooth</dt>
  54. <dd>{{phone.connectivity?.bluetooth}}</dd>
  55. <dt>Infrared</dt>
  56. <dd>{{phone.connectivity?.infrared | checkmark}}</dd>
  57. <dt>GPS</dt>
  58. <dd>{{phone.connectivity?.gps | checkmark}}</dd>
  59. </dl>
  60. </li>
  61. <li>
  62. <span>Android</span>
  63. <dl>
  64. <dt>OS Version</dt>
  65. <dd>{{phone.android?.os}}</dd>
  66. <dt>UI</dt>
  67. <dd>{{phone.android?.ui}}</dd>
  68. </dl>
  69. </li>
  70. <li>
  71. <span>Size and Weight</span>
  72. <dl>
  73. <dt>Dimensions</dt>
  74. <dd *ngFor="let dim of phone.sizeAndWeight?.dimensions">{{dim}}</dd>
  75. <dt>Weight</dt>
  76. <dd>{{phone.sizeAndWeight?.weight}}</dd>
  77. </dl>
  78. </li>
  79. <li>
  80. <span>Display</span>
  81. <dl>
  82. <dt>Screen size</dt>
  83. <dd>{{phone.display?.screenSize}}</dd>
  84. <dt>Screen resolution</dt>
  85. <dd>{{phone.display?.screenResolution}}</dd>
  86. <dt>Touch screen</dt>
  87. <dd>{{phone.display?.touchScreen | checkmark}}</dd>
  88. </dl>
  89. </li>
  90. <li>
  91. <span>Hardware</span>
  92. <dl>
  93. <dt>CPU</dt>
  94. <dd>{{phone.hardware?.cpu}}</dd>
  95. <dt>USB</dt>
  96. <dd>{{phone.hardware?.usb}}</dd>
  97. <dt>Audio / headphone jack</dt>
  98. <dd>{{phone.hardware?.audioJack}}</dd>
  99. <dt>FM Radio</dt>
  100. <dd>{{phone.hardware?.fmRadio | checkmark}}</dd>
  101. <dt>Accelerometer</dt>
  102. <dd>{{phone.hardware?.accelerometer | checkmark}}</dd>
  103. </dl>
  104. </li>
  105. <li>
  106. <span>Camera</span>
  107. <dl>
  108. <dt>Primary</dt>
  109. <dd>{{phone.camera?.primary}}</dd>
  110. <dt>Features</dt>
  111. <dd>{{phone.camera?.features?.join(', ')}}</dd>
  112. </dl>
  113. </li>
  114. <li>
  115. <span>Additional Features</span>
  116. <dd>{{phone.additionalFeatures}}</dd>
  117. </li>
  118. </ul>
  119. </div>

这里有几个值得注意的改动:

There are several notable changes here:

  • 你从所有表达式中移除了 $ctrl. 前缀。

    You've removed the $ctrl. prefix from all expressions.

  • 正如你在电话列表中做过的那样,你把 ng-src 替换成了标准的 src 属性绑定。

    You've replaced ng-src with property bindings for the standard src property.

  • 你在 ng-class 周围使用了属性绑定语法。虽然 Angular 中有一个 和 AngularJS 中非常相似的 ngClass指令, 但是它的值不会神奇的作为表达式进行计算。在 Angular 中,模板中的属性(Attribute)值总是被作为 属性(Property)表达式计算,而不是作为字符串字面量。

    You're using the property binding syntax around ng-class. Though Angular does have a very similar ngClassas AngularJS does, its value is not magically evaluated as an expression. In Angular, you always specify in the template when an attribute's value is a property expression, as opposed to a literal string.

  • 你把 ng-repeat 替换成了 *ngFor

    You've replaced ng-repeats with *ngFors.

  • 你把 ng-click 替换成了一个到标准 click 事件的绑定。

    You've replaced ng-click with an event binding for the standard click.

  • 你把整个模板都包裹进了一个 ngIf 中,这导致只有当存在一个电话时它才会渲染。你必须这么做, 是因为组件首次加载时你还没有 phone 变量,这些表达式就会引用到一个不存在的值。 和 AngularJS 不同,当你尝试引用未定义对象上的属性时,Angular 中的表达式不会默默失败。 你必须明确指出这种情况是你所期望的。

    You've wrapped the whole template in an ngIf that causes it only to be rendered when there is a phone present. You need this because when the component first loads, you don't have phone yet and the expressions will refer to a non-existing value. Unlike in AngularJS, Angular expressions do not fail silently when you try to refer to properties on undefined objects. You need to be explicit about cases where this is expected.

PhoneDetailComponent 组件添加到 NgModuledeclarationsentryComponents 中:

Add PhoneDetailComponent component to the NgModule declarations and entryComponents:

import { PhoneDetailComponent } from './phone-detail/phone-detail.component'; @NgModule({ imports: [ BrowserModule, UpgradeModule, HttpModule, FormsModule, ], declarations: [ PhoneListComponent, PhoneDetailComponent, ], entryComponents: [ PhoneListComponent, PhoneDetailComponent ], providers: [ Phone, routeParamsProvider ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.documentElement, ['phonecatApp']); } }
app.module.ts
      
      
  1. import { PhoneDetailComponent } from './phone-detail/phone-detail.component';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule,
  7. HttpModule,
  8. FormsModule,
  9. ],
  10. declarations: [
  11. PhoneListComponent,
  12. PhoneDetailComponent,
  13. ],
  14. entryComponents: [
  15. PhoneListComponent,
  16. PhoneDetailComponent
  17. ],
  18. providers: [
  19. Phone,
  20. routeParamsProvider
  21. ]
  22. })
  23. export class AppModule {
  24. constructor(private upgrade: UpgradeModule) { }
  25. ngDoBootstrap() {
  26. this.upgrade.bootstrap(document.documentElement, ['phonecatApp']);
  27. }
  28. }

你现在应该从 index.html 中移除电话详情组件的<script>。

You should now also remove the phone detail component <script> tag from index.html.

添加 CheckmarkPipe

Add the CheckmarkPipe

AngularJS 指令中有一个 checkmark过滤器,把它转换成 Angular 的管道

The AngularJS directive had a checkmark filter. Turn that into an Angular pipe.

没有什么升级方法能把过滤器转换成管道。 但你也并不需要它。 把过滤器函数转换成等价的 Pipe 类非常简单。 实现方式和以前一样,但把它们包装进 transform 方法中就可以了。 把该文件改名成 checkmark.pipe.ts,以符合 Angular 中的命名约定:

There is no upgrade method to convert filters into pipes. You won't miss it. It's easy to turn the filter function into an equivalent Pipe class. The implementation is the same as before, repackaged in the transform method. Rename the file to checkmark.pipe.ts to conform with Angular conventions:

import { Pipe, PipeTransform } from '@angular/core'; @Pipe({name: 'checkmark'}) export class CheckmarkPipe implements PipeTransform { transform(input: boolean) { return input ? '\u2713' : '\u2718'; } }
app/core/checkmark/checkmark.pipe.ts
      
      import { Pipe, PipeTransform } from '@angular/core';

@Pipe({name: 'checkmark'})
export class CheckmarkPipe implements PipeTransform {
  transform(input: boolean) {
    return input ? '\u2713' : '\u2718';
  }
}
    

现在,导入并声明这个新创建的管道,同时从 index.html 文件中移除该过滤器的<script> 标签:

Now import and declare the newly created pipe and remove the filter <script> tag from index.html:

import { CheckmarkPipe } from './core/checkmark/checkmark.pipe'; @NgModule({ imports: [ BrowserModule, UpgradeModule, HttpModule, FormsModule, ], declarations: [ PhoneListComponent, PhoneDetailComponent, CheckmarkPipe ], entryComponents: [ PhoneListComponent, PhoneDetailComponent ], providers: [ Phone, routeParamsProvider ] }) export class AppModule { constructor(private upgrade: UpgradeModule) { } ngDoBootstrap() { this.upgrade.bootstrap(document.documentElement, ['phonecatApp']); } }
app.module.ts
      
      
  1. import { CheckmarkPipe } from './core/checkmark/checkmark.pipe';
  2.  
  3. @NgModule({
  4. imports: [
  5. BrowserModule,
  6. UpgradeModule,
  7. HttpModule,
  8. FormsModule,
  9. ],
  10. declarations: [
  11. PhoneListComponent,
  12. PhoneDetailComponent,
  13. CheckmarkPipe
  14. ],
  15. entryComponents: [
  16. PhoneListComponent,
  17. PhoneDetailComponent
  18. ],
  19. providers: [
  20. Phone,
  21. routeParamsProvider
  22. ]
  23. })
  24. export class AppModule {
  25. constructor(private upgrade: UpgradeModule) { }
  26. ngDoBootstrap() {
  27. this.upgrade.bootstrap(document.documentElement, ['phonecatApp']);
  28. }
  29. }

对混合式应用做 AOT 编译

AOT compile the hybrid app

要在混合式应用中使用 AOT 编译,你首先要像其它 Angular 应用一样设置它,就像AOT 编译一章所讲的那样。

To use AOT with a hybrid app, you have to first set it up like any other Angular application, as shown in the Ahead-of-time Compilation chapter.

然后修改 main-aot.ts 的引导代码,来引导 AOT 编译器所生成的 AppComponentFactory

Then change main-aot.ts to bootstrap the AppComponentFactory that was generated by the AOT compiler:

import { platformBrowser } from '@angular/platform-browser'; import { AppModuleNgFactory } from './app.module.ngfactory'; platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
app/main-aot.ts
      
      import { platformBrowser } from '@angular/platform-browser';

import { AppModuleNgFactory } from './app.module.ngfactory';

platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
    

你还要把在 index.html 中已经用到的所有 AngularJS 文件加载到 aot/index.html 中:

You need to load all the AngularJS files you already use in index.html in aot/index.html as well:

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <base href="/app/"> <title>Google Phone Gallery</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> <link rel="stylesheet" href="app.css" /> <link rel="stylesheet" href="app.animations.css" /> <script src="https://code.jquery.com/jquery-2.2.4.js"></script> <script src="https://code.angularjs.org/1.5.5/angular.js"></script> <script src="https://code.angularjs.org/1.5.5/angular-animate.js"></script> <script src="https://code.angularjs.org/1.5.5/angular-resource.js"></script> <script src="https://code.angularjs.org/1.5.5/angular-route.js"></script> <script src="app.module.ajs.js"></script> <script src="app.config.js"></script> <script src="app.animations.js"></script> <script src="core/core.module.js"></script> <script src="core/phone/phone.module.js"></script> <script src="phone-list/phone-list.module.js"></script> <script src="phone-detail/phone-detail.module.js"></script> <script src="/node_modules/core-js/client/shim.min.js"></script> <script src="/node_modules/zone.js/dist/zone.min.js"></script> <script>window.module = 'aot';</script> </head> <body> <div class="view-container"> <div ng-view class="view-frame"></div> </div> </body> <script src="/dist/build.js"></script> </html>
aot/index.html
      
      
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5.  
  6. <base href="/app/">
  7.  
  8. <title>Google Phone Gallery</title>
  9. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
  10. <link rel="stylesheet" href="app.css" />
  11. <link rel="stylesheet" href="app.animations.css" />
  12.  
  13. <script src="https://code.jquery.com/jquery-2.2.4.js"></script>
  14. <script src="https://code.angularjs.org/1.5.5/angular.js"></script>
  15. <script src="https://code.angularjs.org/1.5.5/angular-animate.js"></script>
  16. <script src="https://code.angularjs.org/1.5.5/angular-resource.js"></script>
  17. <script src="https://code.angularjs.org/1.5.5/angular-route.js"></script>
  18.  
  19. <script src="app.module.ajs.js"></script>
  20. <script src="app.config.js"></script>
  21. <script src="app.animations.js"></script>
  22. <script src="core/core.module.js"></script>
  23. <script src="core/phone/phone.module.js"></script>
  24. <script src="phone-list/phone-list.module.js"></script>
  25. <script src="phone-detail/phone-detail.module.js"></script>
  26.  
  27. <script src="/node_modules/core-js/client/shim.min.js"></script>
  28. <script src="/node_modules/zone.js/dist/zone.min.js"></script>
  29.  
  30. <script>window.module = 'aot';</script>
  31. </head>
  32.  
  33. <body>
  34. <div class="view-container">
  35. <div ng-view class="view-frame"></div>
  36. </div>
  37. </body>
  38. <script src="/dist/build.js"></script>
  39. </html>

这些文件要带着相应的腻子脚本复制到一起。应用运行时需要的文件,比如电话列表 .json 和图片,也需要复制过去。

These files need to be copied together with the polyfills. The files the application needs at runtime, like the .json phone lists and images, also need to be copied.

通过 npm install fs-extra --save-dev 安装 fs-extra 可以更好的复制文件,并且把 copy-dist-files.js 文件改成这样:

Install fs-extra via npm install fs-extra --save-dev for better file copying, and change copy-dist-files.js to the following:

var fsExtra = require('fs-extra'); var resources = [ // polyfills 'node_modules/core-js/client/shim.min.js', 'node_modules/zone.js/dist/zone.min.js', // css 'app/app.css', 'app/app.animations.css', // images and json files 'app/img/', 'app/phones/', // app files 'app/app.module.ajs.js', 'app/app.config.js', 'app/app.animations.js', 'app/core/core.module.js', 'app/core/phone/phone.module.js', 'app/phone-list/phone-list.module.js', 'app/phone-detail/phone-detail.module.js' ]; resources.map(function(sourcePath) { var destPath = `aot/${sourcePath}`; fsExtra.copySync(sourcePath, destPath); });
copy-dist-files.js
      
      
  1. var fsExtra = require('fs-extra');
  2. var resources = [
  3. // polyfills
  4. 'node_modules/core-js/client/shim.min.js',
  5. 'node_modules/zone.js/dist/zone.min.js',
  6. // css
  7. 'app/app.css',
  8. 'app/app.animations.css',
  9. // images and json files
  10. 'app/img/',
  11. 'app/phones/',
  12. // app files
  13. 'app/app.module.ajs.js',
  14. 'app/app.config.js',
  15. 'app/app.animations.js',
  16. 'app/core/core.module.js',
  17. 'app/core/phone/phone.module.js',
  18. 'app/phone-list/phone-list.module.js',
  19. 'app/phone-detail/phone-detail.module.js'
  20. ];
  21. resources.map(function(sourcePath) {
  22. var destPath = `aot/${sourcePath}`;
  23. fsExtra.copySync(sourcePath, destPath);
  24. });

这就是想要在升级应用期间 AOT 编译所需的一切!

And that's all you need to use AOT while upgrading your app!

添加 Angular 路由器和引导程序

Adding The Angular Router And Bootstrap

此刻,你已经把所有 AngularJS 的组件替换成了它们在 Angular 中的等价物,不过你仍然在 AngularJS 路由器中使用它们。

At this point, you've replaced all AngularJS application components with their Angular counterparts, even though you're still serving them from the AngularJS router.

添加 Angular 路由器

Add the Angular router

Angular 有一个全新的路由器

Angular has an all-new router.

像所有的路由器一样,它需要在 UI 中指定一个位置来显示路由的视图。 在 Angular 中,它是 <router-outlet>,并位于应用组件树顶部的根组件中。

Like all routers, it needs a place in the UI to display routed views. For Angular that's the <router-outlet> and it belongs in a root component at the top of the applications component tree.

你还没有这样一个根组件,因为该应用仍然是像一个 AngularJS 应用那样被管理的。 创建新的 app.component.ts 文件,放入像这样的 AppComponent 类:

You don't yet have such a root component, because the app is still managed as an AngularJS app. Create a new app.component.ts file with the following AppComponent class:

import { Component } from '@angular/core'; @Component({ selector: 'phonecat-app', template: '<router-outlet></router-outlet>' }) export class AppComponent { }
app/app.component.ts
      
      import { Component } from '@angular/core';

@Component({
  selector: 'phonecat-app',
  template: '<router-outlet></router-outlet>'
})
export class AppComponent { }
    

它有一个很简单的模板,只包含 Angular 路由的 <router-outlet>。 该组件只负责渲染活动路由的内容,此外啥也不干。

It has a simple template that only includes the <router-outlet>. This component just renders the contents of the active route and nothing else.

该选择器告诉 Angular:当应用启动时就把这个根组件插入到宿主页面的 <phonecat-app> 元素中。

The selector tells Angular to plug this root component into the <phonecat-app> element on the host web page when the application launches.

把这个 <phonecat-app> 元素插入到 index.html 中。 用它来代替 AngularJS 中的 ng-view 指令:

Add this <phonecat-app> element to the index.html. It replaces the old AngularJS ng-view directive:

<body> <phonecat-app></phonecat-app> </body>
index.html (body)
      
      <body>
  <phonecat-app></phonecat-app>
</body>
    

创建路由模块

Create the Routing Module

无论在 AngularJS 还是 Angular 或其它框架中,路由器都需要进行配置。

A router needs configuration whether it's the AngularJS or Angular or any other router.

Angular 路由器配置的详情最好去查阅下路由与导航文档。 它建议你创建一个专们用于路由器配置的 NgModule(名叫路由模块)。

The details of Angular router configuration are best left to the Routing documentation which recommends that you create a NgModule dedicated to router configuration (called a Routing Module).

import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { APP_BASE_HREF, HashLocationStrategy, LocationStrategy } from '@angular/common'; import { PhoneDetailComponent } from './phone-detail/phone-detail.component'; import { PhoneListComponent } from './phone-list/phone-list.component'; const routes: Routes = [ { path: '', redirectTo: 'phones', pathMatch: 'full' }, { path: 'phones', component: PhoneListComponent }, { path: 'phones/:phoneId', component: PhoneDetailComponent } ]; @NgModule({ imports: [ RouterModule.forRoot(routes) ], exports: [ RouterModule ], providers: [ { provide: APP_BASE_HREF, useValue: '!' }, { provide: LocationStrategy, useClass: HashLocationStrategy }, ] }) export class AppRoutingModule { }
app/app-routing.module.ts
      
      
  1. import { NgModule } from '@angular/core';
  2. import { Routes, RouterModule } from '@angular/router';
  3. import { APP_BASE_HREF, HashLocationStrategy, LocationStrategy } from '@angular/common';
  4.  
  5. import { PhoneDetailComponent } from './phone-detail/phone-detail.component';
  6. import { PhoneListComponent } from './phone-list/phone-list.component';
  7.  
  8. const routes: Routes = [
  9. { path: '', redirectTo: 'phones', pathMatch: 'full' },
  10. { path: 'phones', component: PhoneListComponent },
  11. { path: 'phones/:phoneId', component: PhoneDetailComponent }
  12. ];
  13.  
  14. @NgModule({
  15. imports: [ RouterModule.forRoot(routes) ],
  16. exports: [ RouterModule ],
  17. providers: [
  18. { provide: APP_BASE_HREF, useValue: '!' },
  19. { provide: LocationStrategy, useClass: HashLocationStrategy },
  20. ]
  21. })
  22. export class AppRoutingModule { }

该模块定义了一个 routes 对象,它带有两个路由,分别指向两个电话组件,以及为空路径指定的默认路由。 它把 routes 传给 RouterModule.forRoot 方法,该方法会完成剩下的事。

This module defines a routes object with two routes to the two phone components and a default route for the empty path. It passes the routes to the RouterModule.forRoot method which does the rest.

一些额外的提供商让路由器使用“hash”策略解析 URL,比如 #!/phones,而不是默认的“Push State”策略。

A couple of extra providers enable routing with "hash" URLs such as #!/phones instead of the default "push state" strategy.

现在,修改 AppModule,让它导入这个 AppRoutingModule,并同时声明根组件 AppComponent。 这会告诉 Angular,它应该使用根组件 AppComponent 引导应用,并把它的视图插入到宿主页面中。

Now update the AppModule to import this AppRoutingModule and also the declare the root AppComponent as the bootstrap component. That tells Angular that it should bootstrap the app with the root AppComponent and insert its view into the host web page.

你还要从 app.module.ts 中移除调用 ngDoBootstrap() 来引导 AngularJS 模块的代码,以及对 UpgradeModule 的导入代码。

You must also remove the bootstrap of the AngularJS module from ngDoBootstrap() in app.module.ts and the UpgradeModule import.

import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { CheckmarkPipe } from './core/checkmark/checkmark.pipe'; import { Phone } from './core/phone/phone.service'; import { PhoneDetailComponent } from './phone-detail/phone-detail.component'; import { PhoneListComponent } from './phone-list/phone-list.component'; @NgModule({ imports: [ BrowserModule, FormsModule, HttpModule, AppRoutingModule ], declarations: [ AppComponent, PhoneListComponent, CheckmarkPipe, PhoneDetailComponent ], providers: [ Phone ], bootstrap: [ AppComponent ] }) export class AppModule {}
app/app.module.ts
      
      
  1. import { NgModule } from '@angular/core';
  2. import { BrowserModule } from '@angular/platform-browser';
  3. import { FormsModule } from '@angular/forms';
  4. import { HttpModule } from '@angular/http';
  5.  
  6. import { AppRoutingModule } from './app-routing.module';
  7. import { AppComponent } from './app.component';
  8. import { CheckmarkPipe } from './core/checkmark/checkmark.pipe';
  9. import { Phone } from './core/phone/phone.service';
  10. import { PhoneDetailComponent } from './phone-detail/phone-detail.component';
  11. import { PhoneListComponent } from './phone-list/phone-list.component';
  12.  
  13. @NgModule({
  14. imports: [
  15. BrowserModule,
  16. FormsModule,
  17. HttpModule,
  18. AppRoutingModule
  19. ],
  20. declarations: [
  21. AppComponent,
  22. PhoneListComponent,
  23. CheckmarkPipe,
  24. PhoneDetailComponent
  25. ],
  26. providers: [
  27. Phone
  28. ],
  29. bootstrap: [ AppComponent ]
  30. })
  31. export class AppModule {}

而且,由于你现在直接路由到 PhoneListComponentPhoneDetailComponent,而不再使用带 <phone-list><phone-detail> 标签的路由模板,因此你同样不再需要它们的 Angular 选择器。

And since you are routing to PhoneListComponent and PhoneDetailComponent directly rather than using a route template with a <phone-list> or <phone-detail> tag, you can do away with their Angular selectors as well.

在电话列表中,你不用再被迫硬编码电话详情的链接了。 你可以通过把每个电话的 id 绑定到 routerLink 指令来生成它们了,该指令的构造函数会为 PhoneDetailComponent 生成正确的 URL:

You no longer have to hardcode the links to phone details in the phone list. You can generate data bindings for each phone's id to the routerLink directive and let that directive construct the appropriate URL to the PhoneDetailComponent:

<ul class="phones"> <li *ngFor="let phone of getPhones()" class="thumbnail phone-list-item"> <a [routerLink]="['/phones', phone.id]" class="thumb"> <img [src]="phone.imageUrl" [alt]="phone.name" /> </a> <a [routerLink]="['/phones', phone.id]" class="name">{{phone.name}}</a> <p>{{phone.snippet}}</p> </li> </ul>
app/phone-list/phone-list.template.html (list with links)
      
      <ul class="phones">
  <li *ngFor="let phone of getPhones()"
      class="thumbnail phone-list-item">
    <a [routerLink]="['/phones', phone.id]" class="thumb">
      <img [src]="phone.imageUrl" [alt]="phone.name" />
    </a>
    <a [routerLink]="['/phones', phone.id]" class="name">{{phone.name}}</a>
    <p>{{phone.snippet}}</p>
  </li>
</ul>
    

要了解详情,请查看路由与导航页。

See the Routing page for details.


使用路由参数

Use route parameters

Angular 路由器会传入不同的路由参数。 改正 PhoneDetail 组件的构造函数,让它改用注入进来的 ActivatedRoute 对象。 从 ActivatedRoute.snapshot.params 中提取出 phoneId,并像以前一样获取手机的数据:

The Angular router passes route parameters differently. Correct the PhoneDetail component constructor to expect an injected ActivatedRoute object. Extract the phoneId from the ActivatedRoute.snapshot.params and fetch the phone data as before:

import { Component } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { Phone, PhoneData } from '../core/phone/phone.service'; @Component({ selector: 'phone-detail', templateUrl: './phone-detail.template.html' }) export class PhoneDetailComponent { phone: PhoneData; mainImageUrl: string; constructor(activatedRoute: ActivatedRoute, phone: Phone) { phone.get(activatedRoute.snapshot.paramMap.get('phoneId')) .subscribe((p: PhoneData) => { this.phone = p; this.setImage(p.images[0]); }); } setImage(imageUrl: string) { this.mainImageUrl = imageUrl; } }
app/phone-detail/phone-detail.component.ts
      
      
  1. import { Component } from '@angular/core';
  2. import { ActivatedRoute } from '@angular/router';
  3.  
  4. import { Phone, PhoneData } from '../core/phone/phone.service';
  5.  
  6. @Component({
  7. selector: 'phone-detail',
  8. templateUrl: './phone-detail.template.html'
  9. })
  10. export class PhoneDetailComponent {
  11. phone: PhoneData;
  12. mainImageUrl: string;
  13.  
  14. constructor(activatedRoute: ActivatedRoute, phone: Phone) {
  15. phone.get(activatedRoute.snapshot.paramMap.get('phoneId'))
  16. .subscribe((p: PhoneData) => {
  17. this.phone = p;
  18. this.setImage(p.images[0]);
  19. });
  20. }
  21.  
  22. setImage(imageUrl: string) {
  23. this.mainImageUrl = imageUrl;
  24. }
  25. }

你现在运行的就是纯正的 Angular 应用了!

You are now running a pure Angular application!

再见,AngularJS!

Say Goodbye to AngularJS

终于可以把辅助训练的轮子摘下来了!让你的应用作为一个纯粹、闪亮的 Angular 程序开始它的新生命吧。 剩下的所有任务就是移除代码 —— 这当然是每个程序员最喜欢的任务!

It is time to take off the training wheels and let the application begin its new life as a pure, shiny Angular app. The remaining tasks all have to do with removing code - which of course is every programmer's favorite task!

应用仍然以混合式应用的方式启动,然而这再也没有必要了。

The application is still bootstrapped as a hybrid app. There's no need for that anymore.

把应用的引导(bootstrap)方法从 UpgradeAdapter 的改为 Angular 的。

Switch the bootstrap method of the application from the UpgradeModule to the Angular way.

import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { AppModule } from './app.module'; platformBrowserDynamic().bootstrapModule(AppModule);
main.ts
      
      import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app.module';

platformBrowserDynamic().bootstrapModule(AppModule);
    

如果你还没有这么做,请从 app.module.ts 删除所有UpgradeModule 的引用, 以及所有用于 AngularJS 服务的工厂供应商(factory provider)app/ajs-upgraded-providers.ts 文件。

If you haven't already, remove all references to the UpgradeModule from app.module.ts, as well as any factory provider for AngularJS services, and the app/ajs-upgraded-providers.ts file.

还要删除所有的 downgradeInjectable()downgradeComponent() 以及与 AngularJS 相关的工厂或指令声明。 因为你不再需要降级任何组件了,也不再需要把它们列在 entryComponents 中。

Also remove any downgradeInjectable() or downgradeComponent() you find, together with the associated AngularJS factory or directive declarations. Since you no longer have downgraded components, you no longer list them in entryComponents.

import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { CheckmarkPipe } from './core/checkmark/checkmark.pipe'; import { Phone } from './core/phone/phone.service'; import { PhoneDetailComponent } from './phone-detail/phone-detail.component'; import { PhoneListComponent } from './phone-list/phone-list.component'; @NgModule({ imports: [ BrowserModule, FormsModule, HttpModule, AppRoutingModule ], declarations: [ AppComponent, PhoneListComponent, CheckmarkPipe, PhoneDetailComponent ], providers: [ Phone ], bootstrap: [ AppComponent ] }) export class AppModule {}
app.module.ts
      
      
  1. import { NgModule } from '@angular/core';
  2. import { BrowserModule } from '@angular/platform-browser';
  3. import { FormsModule } from '@angular/forms';
  4. import { HttpModule } from '@angular/http';
  5.  
  6. import { AppRoutingModule } from './app-routing.module';
  7. import { AppComponent } from './app.component';
  8. import { CheckmarkPipe } from './core/checkmark/checkmark.pipe';
  9. import { Phone } from './core/phone/phone.service';
  10. import { PhoneDetailComponent } from './phone-detail/phone-detail.component';
  11. import { PhoneListComponent } from './phone-list/phone-list.component';
  12.  
  13. @NgModule({
  14. imports: [
  15. BrowserModule,
  16. FormsModule,
  17. HttpModule,
  18. AppRoutingModule
  19. ],
  20. declarations: [
  21. AppComponent,
  22. PhoneListComponent,
  23. CheckmarkPipe,
  24. PhoneDetailComponent
  25. ],
  26. providers: [
  27. Phone
  28. ],
  29. bootstrap: [ AppComponent ]
  30. })
  31. export class AppModule {}

你还要完全移除了下列文件。它们是 AngularJS 的模块配置文件和类型定义文件,在 Angular 中不需要了:

You may also completely remove the following files. They are AngularJS module configuration files and not needed in Angular:

  • app/app.module.ajs.ts

  • app/app.config.ts

  • app/core/core.module.ts

  • app/core/phone/phone.module.ts

  • app/phone-detail/phone-detail.module.ts

  • app/phone-list/phone-list.module.ts

还需要卸载 AngularJS 的外部类型定义文件。你现在只需要留下 Jasmine 和 Angular 所需的腻子脚本。 systemjs.config.js 中的 @angular/upgrade 包及其映射也可以移除了。

The external typings for AngularJS may be uninstalled as well. The only ones you still need are for Jasmine and Angular polyfills. The @angular/upgrade package and its mapping in systemjs.config.js can also go.

npm uninstall @angular/upgrade --save npm uninstall @types/angular @types/angular-animate @types/angular-cookies @types/angular-mocks @types/angular-resource @types/angular-route @types/angular-sanitize --save-dev
      
      npm uninstall @angular/upgrade --save
npm uninstall @types/angular @types/angular-animate @types/angular-cookies @types/angular-mocks @types/angular-resource @types/angular-route @types/angular-sanitize --save-dev
    

最后,从 index.htmlkarma.conf.js 中,移除所有对 AngularJS 和 jQuery 脚本的引用。 当这些全部做完时,index.html 应该是这样的:

Finally, from index.html, remove all references to AngularJS scripts and jQuery. When you're done, this is what it should look like:

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <base href="/app/"> <title>Google Phone Gallery</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> <link rel="stylesheet" href="app.css" /> <script src="/node_modules/core-js/client/shim.min.js"></script> <script src="/node_modules/zone.js/dist/zone.js"></script> <script src="/node_modules/systemjs/dist/system.src.js"></script> <script src="/systemjs.config.js"></script> <script> System.import('/app'); </script> </head> <body> <phonecat-app></phonecat-app> </body> </html>
index.html
      
      
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <base href="/app/">
  6. <title>Google Phone Gallery</title>
  7. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
  8. <link rel="stylesheet" href="app.css" />
  9.  
  10. <script src="/node_modules/core-js/client/shim.min.js"></script>
  11. <script src="/node_modules/zone.js/dist/zone.js"></script>
  12. <script src="/node_modules/systemjs/dist/system.src.js"></script>
  13. <script src="/systemjs.config.js"></script>
  14. <script>
  15. System.import('/app');
  16. </script>
  17. </head>
  18. <body>
  19. <phonecat-app></phonecat-app>
  20. </body>
  21. </html>

这是你最后一次看到 AngularJS 了!它曾经带给你很多帮助,不过现在,该说再见了。

That is the last you'll see of AngularJS! It has served us well but now it's time to say goodbye.

附录:升级 PhoneCat 的测试

Appendix: Upgrading PhoneCat Tests

测试不仅要在升级过程中被保留,它还是确保应用在升级过程中不会被破坏的一个安全指示器。 要达到这个目的,E2E 测试尤其有用。

Tests can not only be retained through an upgrade process, but they can also be used as a valuable safety measure when ensuring that the application does not break during the upgrade. E2E tests are especially useful for this purpose.

E2E 测试

E2E Tests

PhoneCat 项目中同时有基于 Protractor 的 E2E 测试和一些基于 Karma 的单元测试。 对这两者来说,E2E 测试的转换要容易得多:根据定义,E2E 测试通过与应用中显示的这些 UI 元素互动,从外部访问你的应用来进行测试。 E2E 测试实际上并不关心这些应用中各部件的内部结构。这也意味着,虽然你已经修改了此应用程序, 但是 E2E 测试套件仍然应该能像以前一样全部通过。因为从用户的角度来说,你并没有改变应用的行为。

The PhoneCat project has both E2E Protractor tests and some Karma unit tests in it. Of these two, E2E tests can be dealt with much more easily: By definition, E2E tests access the application from the outside by interacting with the various UI elements the app puts on the screen. E2E tests aren't really that concerned with the internal structure of the application components. That also means that, although you modify the project quite a bit during the upgrade, the E2E test suite should keep passing with just minor modifications. You didn't change how the application behaves from the user's point of view.

在转成 TypeScript 期间,你不用做什么就能让 E2E 测试正常工作。 但是当你想改成按照混合式应用进行引导时,必须做一些修改。

During TypeScript conversion, there is nothing to do to keep E2E tests working. But when you change the bootstrap to that of a Hybrid app, you must make a few changes.

再对 protractor-conf.js 做下列修改,与混合应用同步:

Update the protractor-conf.js to sync with hybrid apps:

ng12Hybrid: true
      
      ng12Hybrid: true
    

当你开始组件和模块升级到 Angular 时,还需要一系列后续的修改。 这是因为 E2E 测试有一些匹配器是 AngularJS 中特有的。对于 PhoneCat 来说,为了让它能在 Angular 下工作,你得做下列修改:

When you start to upgrade components and their templates to Angular, you'll make more changes because the E2E tests have matchers that are specific to AngularJS. For PhoneCat you need to make the following changes in order to make things work with Angular:

老代码

Previous code

新代码

New code

说明

Notes

by.repeater('phone in $ctrl.phones').column('phone.name')

by.css('.phones .name')

repeater 匹配器依赖于 AngularJS 中的 ng-repeat

The repeater matcher relies on AngularJS ng-repeat

by.repeater('phone in $ctrl.phones')

by.css('.phones li')

repeater 匹配器依赖于 AngularJS 中的 ng-repeat

The repeater matcher relies on AngularJS ng-repeat

by.model('$ctrl.query')

by.css('input')

model 匹配器依赖于 AngularJS 中的 ng-model

The model matcher relies on AngularJS ng-model

by.model('$ctrl.orderProp')

by.css('select')

model 匹配器依赖于 AngularJS 中的 ng-model

The model matcher relies on AngularJS ng-model

by.binding('$ctrl.phone.name')

by.css('h1')

binding 匹配器依赖于 AngularJS 的数据绑定

The binding matcher relies on AngularJS data binding

当引导方式从 UpgradeModule 切换到纯 Angular 的时,AngularJS 就从页面中完全消失了。 此时,你需要告诉 Protractor,它不用再找 AngularJS 应用了,而是从页面中查找 Angular 应用。 于是在 protractor-conf.js 中做下列修改:

When the bootstrap method is switched from that of UpgradeModule to pure Angular, AngularJS ceases to exist on the page completely. At this point, you need to tell Protractor that it should not be looking for an AngularJS app anymore, but instead it should find Angular apps from the page.

替换之前在 protractor-conf.js 中加入 ng12Hybrid,象这样:

Replace the ng12Hybrid previously added with the following in protractor-conf.js:

useAllAngular2AppRoots: true,
      
      useAllAngular2AppRoots: true,
    

同样,PhoneCat 的测试代码中有两个 Protractor API 调用内部使用了 AngularJS 的 $location。该服务没有了, 你就得把这些调用用一个 WebDriver 的通用 URL API 代替。第一个 API 是“重定向(redirect)”规约:

Also, there are a couple of Protractor API calls in the PhoneCat test code that are using the AngularJS $location service under the hood. As that service is no longer present after the upgrade, replace those calls with ones that use WebDriver's generic URL APIs instead. The first of these is the redirection spec:

it('should redirect `index.html` to `index.html#!/phones', function() { browser.get('index.html'); browser.waitForAngular(); browser.getCurrentUrl().then(function(url: string) { expect(url.endsWith('/phones')).toBe(true); }); });
e2e-tests/scenarios.ts
      
      it('should redirect `index.html` to `index.html#!/phones', function() {
  browser.get('index.html');
  browser.waitForAngular();
  browser.getCurrentUrl().then(function(url: string) {
    expect(url.endsWith('/phones')).toBe(true);
  });
});
    

然后是“电话链接(phone links)”规约:

And the second is the phone links spec:

it('should render phone specific links', function() { let query = element(by.css('input')); query.sendKeys('nexus'); element.all(by.css('.phones li a')).first().click(); browser.getCurrentUrl().then(function(url: string) { expect(url.endsWith('/phones/nexus-s')).toBe(true); }); });
e2e-tests/scenarios.ts
      
      it('should render phone specific links', function() {
  let query = element(by.css('input'));
  query.sendKeys('nexus');
  element.all(by.css('.phones li a')).first().click();
  browser.getCurrentUrl().then(function(url: string) {
    expect(url.endsWith('/phones/nexus-s')).toBe(true);
  });
});
    

单元测试

Unit Tests

另一方面,对于单元测试来说,需要更多的转化工作。实际上,它们需要随着产品代码一起升级。

For unit tests, on the other hand, more conversion work is needed. Effectively they need to be upgraded along with the production code.

在转成 TypeScript 期间,严格来讲没有什么改动是必须的。但把单元测试代码转成 TypeScript 仍然是个好主意, 产品代码从 TypeScript 中获得的那些增益也同样适用于测试代码。

During TypeScript conversion no changes are strictly necessary. But it may be a good idea to convert the unit test code into TypeScript as well.

比如,在这个电话详情组件的规约中,你不仅用到了 ES2015 中的箭头函数和块作用域变量这些特性,还为所用的一些 AngularJS 服务提供了类型定义。

For instance, in the phone detail component spec, you can use ES2015 features like arrow functions and block-scoped variables and benefit from the type definitions of the AngularJS services you're consuming:

describe('phoneDetail', () => { // Load the module that contains the `phoneDetail` component before each test beforeEach(angular.mock.module('phoneDetail')); // Test the controller describe('PhoneDetailController', () => { let $httpBackend: angular.IHttpBackendService; let ctrl: any; let xyzPhoneData = { name: 'phone xyz', images: ['image/url1.png', 'image/url2.png'] }; beforeEach(inject(($componentController: any, _$httpBackend_: angular.IHttpBackendService, $routeParams: angular.route.IRouteParamsService) => { $httpBackend = _$httpBackend_; $httpBackend.expectGET('phones/xyz.json').respond(xyzPhoneData); $routeParams['phoneId'] = 'xyz'; ctrl = $componentController('phoneDetail'); })); it('should fetch the phone details', () => { jasmine.addCustomEqualityTester(angular.equals); expect(ctrl.phone).toEqual({}); $httpBackend.flush(); expect(ctrl.phone).toEqual(xyzPhoneData); }); }); });
app/phone-detail/phone-detail.component.spec.ts
      
      
  1. describe('phoneDetail', () => {
  2.  
  3. // Load the module that contains the `phoneDetail` component before each test
  4. beforeEach(angular.mock.module('phoneDetail'));
  5.  
  6. // Test the controller
  7. describe('PhoneDetailController', () => {
  8. let $httpBackend: angular.IHttpBackendService;
  9. let ctrl: any;
  10. let xyzPhoneData = {
  11. name: 'phone xyz',
  12. images: ['image/url1.png', 'image/url2.png']
  13. };
  14.  
  15. beforeEach(inject(($componentController: any,
  16. _$httpBackend_: angular.IHttpBackendService,
  17. $routeParams: angular.route.IRouteParamsService) => {
  18. $httpBackend = _$httpBackend_;
  19. $httpBackend.expectGET('phones/xyz.json').respond(xyzPhoneData);
  20.  
  21. $routeParams['phoneId'] = 'xyz';
  22.  
  23. ctrl = $componentController('phoneDetail');
  24. }));
  25.  
  26. it('should fetch the phone details', () => {
  27. jasmine.addCustomEqualityTester(angular.equals);
  28.  
  29. expect(ctrl.phone).toEqual({});
  30.  
  31. $httpBackend.flush();
  32. expect(ctrl.phone).toEqual(xyzPhoneData);
  33. });
  34.  
  35. });
  36.  
  37. });

一旦你开始了升级过程并引入了 SystemJS,还需要对 Karma 进行配置修改。 你需要让 SystemJS 加载所有的 Angular 新代码,

Once you start the upgrade process and bring in SystemJS, configuration changes are needed for Karma. You need to let SystemJS load all the new Angular code, which can be done with the following kind of shim file:

// /*global jasmine, __karma__, window*/ Error.stackTraceLimit = 0; // "No stacktrace"" is usually best for app testing. // Uncomment to get full stacktrace output. Sometimes helpful, usually not. // Error.stackTraceLimit = Infinity; // jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000; var builtPath = '/base/app/'; __karma__.loaded = function () { }; function isJsFile(path) { return path.slice(-3) == '.js'; } function isSpecFile(path) { return /\.spec\.(.*\.)?js$/.test(path); } function isBuiltFile(path) { return isJsFile(path) && (path.substr(0, builtPath.length) == builtPath); } var allSpecFiles = Object.keys(window.__karma__.files) .filter(isSpecFile) .filter(isBuiltFile); System.config({ baseURL: '/base', // Extend usual application package list with test folder packages: { 'testing': { main: 'index.js', defaultExtension: 'js' } }, // Assume npm: is set in `paths` in systemjs.config // Map the angular testing umd bundles map: { '@angular/core/testing': 'npm:@angular/core/bundles/core-testing.umd.js', '@angular/common/testing': 'npm:@angular/common/bundles/common-testing.umd.js', '@angular/common/http/testing': 'npm:@angular/common/bundles/common-http-testing.umd.js', '@angular/compiler/testing': 'npm:@angular/compiler/bundles/compiler-testing.umd.js', '@angular/platform-browser/testing': 'npm:@angular/platform-browser/bundles/platform-browser-testing.umd.js', '@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js', '@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js', '@angular/router/testing': 'npm:@angular/router/bundles/router-testing.umd.js', '@angular/forms/testing': 'npm:@angular/forms/bundles/forms-testing.umd.js', }, }); System.import('systemjs.config.js') .then(importSystemJsExtras) .then(initTestBed) .then(initTesting); /** Optional SystemJS configuration extras. Keep going w/o it */ function importSystemJsExtras(){ return System.import('systemjs.config.extras.js') .catch(function(reason) { console.log( 'Warning: System.import could not load the optional "systemjs.config.extras.js". Did you omit it by accident? Continuing without it.' ); console.log(reason); }); } function initTestBed(){ return Promise.all([ System.import('@angular/core/testing'), System.import('@angular/platform-browser-dynamic/testing') ]) .then(function (providers) { var coreTesting = providers[0]; var browserTesting = providers[1]; coreTesting.TestBed.initTestEnvironment( browserTesting.BrowserDynamicTestingModule, browserTesting.platformBrowserDynamicTesting()); }) } // Import all spec files and start karma function initTesting () { return Promise.all( allSpecFiles.map(function (moduleName) { return System.import(moduleName); }) ) .then(__karma__.start, __karma__.error); }
karma-test-shim.js
      
      
  1. // /*global jasmine, __karma__, window*/
  2. Error.stackTraceLimit = 0; // "No stacktrace"" is usually best for app testing.
  3.  
  4. // Uncomment to get full stacktrace output. Sometimes helpful, usually not.
  5. // Error.stackTraceLimit = Infinity; //
  6.  
  7. jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000;
  8.  
  9. var builtPath = '/base/app/';
  10.  
  11. __karma__.loaded = function () { };
  12.  
  13. function isJsFile(path) {
  14. return path.slice(-3) == '.js';
  15. }
  16.  
  17. function isSpecFile(path) {
  18. return /\.spec\.(.*\.)?js$/.test(path);
  19. }
  20.  
  21. function isBuiltFile(path) {
  22. return isJsFile(path) && (path.substr(0, builtPath.length) == builtPath);
  23. }
  24.  
  25. var allSpecFiles = Object.keys(window.__karma__.files)
  26. .filter(isSpecFile)
  27. .filter(isBuiltFile);
  28.  
  29. System.config({
  30. baseURL: '/base',
  31. // Extend usual application package list with test folder
  32. packages: { 'testing': { main: 'index.js', defaultExtension: 'js' } },
  33.  
  34. // Assume npm: is set in `paths` in systemjs.config
  35. // Map the angular testing umd bundles
  36. map: {
  37. '@angular/core/testing': 'npm:@angular/core/bundles/core-testing.umd.js',
  38. '@angular/common/testing': 'npm:@angular/common/bundles/common-testing.umd.js',
  39. '@angular/common/http/testing': 'npm:@angular/common/bundles/common-http-testing.umd.js',
  40. '@angular/compiler/testing': 'npm:@angular/compiler/bundles/compiler-testing.umd.js',
  41. '@angular/platform-browser/testing': 'npm:@angular/platform-browser/bundles/platform-browser-testing.umd.js',
  42. '@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js',
  43. '@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js',
  44. '@angular/router/testing': 'npm:@angular/router/bundles/router-testing.umd.js',
  45. '@angular/forms/testing': 'npm:@angular/forms/bundles/forms-testing.umd.js',
  46. },
  47. });
  48.  
  49. System.import('systemjs.config.js')
  50. .then(importSystemJsExtras)
  51. .then(initTestBed)
  52. .then(initTesting);
  53.  
  54. /** Optional SystemJS configuration extras. Keep going w/o it */
  55. function importSystemJsExtras(){
  56. return System.import('systemjs.config.extras.js')
  57. .catch(function(reason) {
  58. console.log(
  59. 'Warning: System.import could not load the optional "systemjs.config.extras.js". Did you omit it by accident? Continuing without it.'
  60. );
  61. console.log(reason);
  62. });
  63. }
  64.  
  65. function initTestBed(){
  66. return Promise.all([
  67. System.import('@angular/core/testing'),
  68. System.import('@angular/platform-browser-dynamic/testing')
  69. ])
  70.  
  71. .then(function (providers) {
  72. var coreTesting = providers[0];
  73. var browserTesting = providers[1];
  74.  
  75. coreTesting.TestBed.initTestEnvironment(
  76. browserTesting.BrowserDynamicTestingModule,
  77. browserTesting.platformBrowserDynamicTesting());
  78. })
  79. }
  80.  
  81. // Import all spec files and start karma
  82. function initTesting () {
  83. return Promise.all(
  84. allSpecFiles.map(function (moduleName) {
  85. return System.import(moduleName);
  86. })
  87. )
  88. .then(__karma__.start, __karma__.error);
  89. }

这个 shim 文件首先加载了 SystemJS 的配置,然后是 Angular 的测试支持库,然后是应用本身的规约文件。

The shim first loads the SystemJS configuration, then Angular's test support libraries, and then the application's spec files themselves.

然后需要修改 Karma 配置,来让它使用本应用的根目录作为基础目录(base directory),而不是 app

Karma configuration should then be changed so that it uses the application root dir as the base directory, instead of app.

basePath: './',
karma.conf.js
      
      basePath: './',
    

一旦这些完成了,你就能加载 SystemJS 和其它依赖,并切换配置文件来加载那些应用文件,而不用在 Karma 页面中包含它们。 你要让这个 shim 文件和 SystemJS 去加载它们。

Once done, you can load SystemJS and other dependencies, and also switch the configuration for loading application files so that they are not included to the page by Karma. You'll let the shim and SystemJS load them.

// System.js for module loading 'node_modules/systemjs/dist/system.src.js', // Polyfills 'node_modules/core-js/client/shim.js', // zone.js 'node_modules/zone.js/dist/zone.js', 'node_modules/zone.js/dist/zone-testing.js', // RxJs. { pattern: 'node_modules/rxjs/**/*.js', included: false, watched: false }, { pattern: 'node_modules/rxjs/**/*.js.map', included: false, watched: false }, // Angular itself and the testing library {pattern: 'node_modules/@angular/**/*.js', included: false, watched: false}, {pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: false}, {pattern: 'systemjs.config.js', included: false, watched: false}, 'karma-test-shim.js', {pattern: 'app/**/*.module.js', included: false, watched: true}, {pattern: 'app/*!(.module|.spec).js', included: false, watched: true}, {pattern: 'app/!(bower_components)/**/*!(.module|.spec).js', included: false, watched: true}, {pattern: 'app/**/*.spec.js', included: false, watched: true}, {pattern: '**/*.html', included: false, watched: true},
karma.conf.js
      
      
  1. // System.js for module loading
  2. 'node_modules/systemjs/dist/system.src.js',
  3.  
  4. // Polyfills
  5. 'node_modules/core-js/client/shim.js',
  6.  
  7. // zone.js
  8. 'node_modules/zone.js/dist/zone.js',
  9. 'node_modules/zone.js/dist/zone-testing.js',
  10.  
  11. // RxJs.
  12. { pattern: 'node_modules/rxjs/**/*.js', included: false, watched: false },
  13. { pattern: 'node_modules/rxjs/**/*.js.map', included: false, watched: false },
  14.  
  15. // Angular itself and the testing library
  16. {pattern: 'node_modules/@angular/**/*.js', included: false, watched: false},
  17. {pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: false},
  18.  
  19. {pattern: 'systemjs.config.js', included: false, watched: false},
  20. 'karma-test-shim.js',
  21.  
  22. {pattern: 'app/**/*.module.js', included: false, watched: true},
  23. {pattern: 'app/*!(.module|.spec).js', included: false, watched: true},
  24. {pattern: 'app/!(bower_components)/**/*!(.module|.spec).js', included: false, watched: true},
  25. {pattern: 'app/**/*.spec.js', included: false, watched: true},
  26.  
  27. {pattern: '**/*.html', included: false, watched: true},

由于 Angular 组件中的 HTML 模板也同样要被加载,所以你得帮 Karma 一把,帮它在正确的路径下找到这些模板:

Since the HTML templates of Angular components will be loaded as well, you must help Karma out a bit so that it can route them to the right paths:

// proxied base paths for loading assets proxies: { // required for component assets fetched by Angular's compiler "/phone-detail": '/base/app/phone-detail', "/phone-list": '/base/app/phone-list' },
karma.conf.js
      
      // proxied base paths for loading assets
proxies: {
  // required for component assets fetched by Angular's compiler
  "/phone-detail": '/base/app/phone-detail',
  "/phone-list": '/base/app/phone-list'
},
    

如果产品代码被切换到了 Angular,单元测试文件本身也需要切换过来。对勾(checkmark)管道的规约可能是最直观的,因为它没有任何依赖:

The unit test files themselves also need to be switched to Angular when their production counterparts are switched. The specs for the checkmark pipe are probably the most straightforward, as the pipe has no dependencies:

import { CheckmarkPipe } from './checkmark.pipe'; describe('CheckmarkPipe', function() { it('should convert boolean values to unicode checkmark or cross', function () { const checkmarkPipe = new CheckmarkPipe(); expect(checkmarkPipe.transform(true)).toBe('\u2713'); expect(checkmarkPipe.transform(false)).toBe('\u2718'); }); });
app/core/checkmark/checkmark.pipe.spec.ts
      
      import { CheckmarkPipe } from './checkmark.pipe';

describe('CheckmarkPipe', function() {

  it('should convert boolean values to unicode checkmark or cross', function () {
    const checkmarkPipe = new CheckmarkPipe();
    expect(checkmarkPipe.transform(true)).toBe('\u2713');
    expect(checkmarkPipe.transform(false)).toBe('\u2718');
  });
});
    

Phone 服务的测试会牵扯到一点别的。你需要把模拟版的 AngularJS $httpBackend 服务切换到模拟板的 Angular Http 后端。

The unit test for the phone service is a bit more involved. You need to switch from the mocked-out AngularJS $httpBackend to a mocked-out Angular Http backend.

import { inject, TestBed } from '@angular/core/testing'; import { Http, BaseRequestOptions, ResponseOptions, Response } from '@angular/http'; import { MockBackend, MockConnection } from '@angular/http/testing'; import { Phone, PhoneData } from './phone.service'; describe('Phone', function() { let phone: Phone; let phonesData: PhoneData[] = [ {name: 'Phone X', snippet: '', images: []}, {name: 'Phone Y', snippet: '', images: []}, {name: 'Phone Z', snippet: '', images: []} ]; let mockBackend: MockBackend; beforeEach(() => { TestBed.configureTestingModule({ providers: [ Phone, MockBackend, BaseRequestOptions, { provide: Http, useFactory: (backend: MockBackend, options: BaseRequestOptions) => new Http(backend, options), deps: [MockBackend, BaseRequestOptions] } ] }); }); beforeEach(inject([MockBackend, Phone], (_mockBackend_: MockBackend, _phone_: Phone) => { mockBackend = _mockBackend_; phone = _phone_; })); it('should fetch the phones data from `/phones/phones.json`', (done: () => void) => { mockBackend.connections.subscribe((conn: MockConnection) => { conn.mockRespond(new Response(new ResponseOptions({body: JSON.stringify(phonesData)}))); }); phone.query().subscribe(result => { expect(result).toEqual(phonesData); done(); }); }); });
app/core/phone/phone.service.spec.ts
      
      
  1. import { inject, TestBed } from '@angular/core/testing';
  2. import {
  3. Http,
  4. BaseRequestOptions,
  5. ResponseOptions,
  6. Response
  7. } from '@angular/http';
  8. import { MockBackend, MockConnection } from '@angular/http/testing';
  9. import { Phone, PhoneData } from './phone.service';
  10.  
  11. describe('Phone', function() {
  12. let phone: Phone;
  13. let phonesData: PhoneData[] = [
  14. {name: 'Phone X', snippet: '', images: []},
  15. {name: 'Phone Y', snippet: '', images: []},
  16. {name: 'Phone Z', snippet: '', images: []}
  17. ];
  18. let mockBackend: MockBackend;
  19.  
  20. beforeEach(() => {
  21. TestBed.configureTestingModule({
  22. providers: [
  23. Phone,
  24. MockBackend,
  25. BaseRequestOptions,
  26. { provide: Http,
  27. useFactory: (backend: MockBackend, options: BaseRequestOptions) => new Http(backend, options),
  28. deps: [MockBackend, BaseRequestOptions]
  29. }
  30. ]
  31. });
  32. });
  33.  
  34. beforeEach(inject([MockBackend, Phone], (_mockBackend_: MockBackend, _phone_: Phone) => {
  35. mockBackend = _mockBackend_;
  36. phone = _phone_;
  37. }));
  38.  
  39. it('should fetch the phones data from `/phones/phones.json`', (done: () => void) => {
  40. mockBackend.connections.subscribe((conn: MockConnection) => {
  41. conn.mockRespond(new Response(new ResponseOptions({body: JSON.stringify(phonesData)})));
  42. });
  43. phone.query().subscribe(result => {
  44. expect(result).toEqual(phonesData);
  45. done();
  46. });
  47. });
  48.  
  49. });

对于组件的规约,你可以模拟出 Phone 服务本身,并且让它提供电话的数据。你可以对这些组件使用 Angular 的组件单元测试 API。

For the component specs, you can mock out the Phone service itself, and have it provide canned phone data. You use Angular's component unit testing APIs for both components.

import { ActivatedRoute } from '@angular/router'; import { Observable, of } from 'rxjs'; import { async, TestBed } from '@angular/core/testing'; import { PhoneDetailComponent } from './phone-detail.component'; import { Phone, PhoneData } from '../core/phone/phone.service'; import { CheckmarkPipe } from '../core/checkmark/checkmark.pipe'; function xyzPhoneData(): PhoneData { return { name: 'phone xyz', snippet: '', images: ['image/url1.png', 'image/url2.png'] }; } class MockPhone { get(id: string): Observable<PhoneData> { return of(xyzPhoneData()); } } class ActivatedRouteMock { constructor(public snapshot: any) {} } describe('PhoneDetailComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ CheckmarkPipe, PhoneDetailComponent ], providers: [ { provide: Phone, useClass: MockPhone }, { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) } ] }) .compileComponents(); })); it('should fetch phone detail', () => { const fixture = TestBed.createComponent(PhoneDetailComponent); fixture.detectChanges(); let compiled = fixture.debugElement.nativeElement; expect(compiled.querySelector('h1').textContent).toContain(xyzPhoneData().name); }); });
app/phone-detail/phone-detail.component.spec.ts
      
      
  1. import { ActivatedRoute } from '@angular/router';
  2.  
  3. import { Observable, of } from 'rxjs';
  4.  
  5. import { async, TestBed } from '@angular/core/testing';
  6.  
  7. import { PhoneDetailComponent } from './phone-detail.component';
  8. import { Phone, PhoneData } from '../core/phone/phone.service';
  9. import { CheckmarkPipe } from '../core/checkmark/checkmark.pipe';
  10.  
  11. function xyzPhoneData(): PhoneData {
  12. return {
  13. name: 'phone xyz',
  14. snippet: '',
  15. images: ['image/url1.png', 'image/url2.png']
  16. };
  17. }
  18.  
  19. class MockPhone {
  20. get(id: string): Observable<PhoneData> {
  21. return of(xyzPhoneData());
  22. }
  23. }
  24.  
  25.  
  26. class ActivatedRouteMock {
  27. constructor(public snapshot: any) {}
  28. }
  29.  
  30.  
  31. describe('PhoneDetailComponent', () => {
  32.  
  33.  
  34. beforeEach(async(() => {
  35. TestBed.configureTestingModule({
  36. declarations: [ CheckmarkPipe, PhoneDetailComponent ],
  37. providers: [
  38. { provide: Phone, useClass: MockPhone },
  39. { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) }
  40. ]
  41. })
  42. .compileComponents();
  43. }));
  44.  
  45. it('should fetch phone detail', () => {
  46. const fixture = TestBed.createComponent(PhoneDetailComponent);
  47. fixture.detectChanges();
  48. let compiled = fixture.debugElement.nativeElement;
  49. expect(compiled.querySelector('h1').textContent).toContain(xyzPhoneData().name);
  50. });
  51.  
  52. });
import { NO_ERRORS_SCHEMA } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { Observable, of } from 'rxjs'; import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { SpyLocation } from '@angular/common/testing'; import { PhoneListComponent } from './phone-list.component'; import { Phone, PhoneData } from '../core/phone/phone.service'; class ActivatedRouteMock { constructor(public snapshot: any) {} } class MockPhone { query(): Observable<PhoneData[]> { return of([ {name: 'Nexus S', snippet: '', images: []}, {name: 'Motorola DROID', snippet: '', images: []} ]); } } let fixture: ComponentFixture<PhoneListComponent>; describe('PhoneList', () => { beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ PhoneListComponent ], providers: [ { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) }, { provide: Location, useClass: SpyLocation }, { provide: Phone, useClass: MockPhone }, ], schemas: [ NO_ERRORS_SCHEMA ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(PhoneListComponent); }); it('should create "phones" model with 2 phones fetched from xhr', () => { fixture.detectChanges(); let compiled = fixture.debugElement.nativeElement; expect(compiled.querySelectorAll('.phone-list-item').length).toBe(2); expect( compiled.querySelector('.phone-list-item:nth-child(1)').textContent ).toContain('Motorola DROID'); expect( compiled.querySelector('.phone-list-item:nth-child(2)').textContent ).toContain('Nexus S'); }); xit('should set the default value of orderProp model', () => { fixture.detectChanges(); let compiled = fixture.debugElement.nativeElement; expect( compiled.querySelector('select option:last-child').selected ).toBe(true); }); });
app/phone-list/phone-list.component.spec.ts
      
      
  1. import { NO_ERRORS_SCHEMA } from '@angular/core';
  2. import { ActivatedRoute } from '@angular/router';
  3. import { Observable, of } from 'rxjs';
  4. import { async, ComponentFixture, TestBed } from '@angular/core/testing';
  5. import { SpyLocation } from '@angular/common/testing';
  6.  
  7. import { PhoneListComponent } from './phone-list.component';
  8. import { Phone, PhoneData } from '../core/phone/phone.service';
  9.  
  10. class ActivatedRouteMock {
  11. constructor(public snapshot: any) {}
  12. }
  13.  
  14. class MockPhone {
  15. query(): Observable<PhoneData[]> {
  16. return of([
  17. {name: 'Nexus S', snippet: '', images: []},
  18. {name: 'Motorola DROID', snippet: '', images: []}
  19. ]);
  20. }
  21. }
  22.  
  23. let fixture: ComponentFixture<PhoneListComponent>;
  24.  
  25. describe('PhoneList', () => {
  26.  
  27. beforeEach(async(() => {
  28. TestBed.configureTestingModule({
  29. declarations: [ PhoneListComponent ],
  30. providers: [
  31. { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) },
  32. { provide: Location, useClass: SpyLocation },
  33. { provide: Phone, useClass: MockPhone },
  34. ],
  35. schemas: [ NO_ERRORS_SCHEMA ]
  36. })
  37. .compileComponents();
  38. }));
  39.  
  40. beforeEach(() => {
  41. fixture = TestBed.createComponent(PhoneListComponent);
  42. });
  43.  
  44. it('should create "phones" model with 2 phones fetched from xhr', () => {
  45. fixture.detectChanges();
  46. let compiled = fixture.debugElement.nativeElement;
  47. expect(compiled.querySelectorAll('.phone-list-item').length).toBe(2);
  48. expect(
  49. compiled.querySelector('.phone-list-item:nth-child(1)').textContent
  50. ).toContain('Motorola DROID');
  51. expect(
  52. compiled.querySelector('.phone-list-item:nth-child(2)').textContent
  53. ).toContain('Nexus S');
  54. });
  55.  
  56. xit('should set the default value of orderProp model', () => {
  57. fixture.detectChanges();
  58. let compiled = fixture.debugElement.nativeElement;
  59. expect(
  60. compiled.querySelector('select option:last-child').selected
  61. ).toBe(true);
  62. });
  63.  
  64. });

最后,当你切换到 Angular 路由时,需要重新过一遍这些组件测试。对详情组件来说,你需要提供一个 Angular RouteParams 的 mock 对象,而不再用 AngularJS 中的 $routeParams

Finally, revisit both of the component tests when you switch to the Angular router. For the details component, provide a mock of Angular ActivatedRoute object instead of using the AngularJS $routeParams.

import { ActivatedRoute } from '@angular/router'; /* . . . */ class ActivatedRouteMock { constructor(public snapshot: any) {} } /* . . . */ beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ CheckmarkPipe, PhoneDetailComponent ], providers: [ { provide: Phone, useClass: MockPhone }, { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) } ] }) .compileComponents(); }));
app/phone-detail/phone-detail.component.spec.ts
      
      
  1. import { ActivatedRoute } from '@angular/router';
  2.  
  3. /* . . . */
  4.  
  5. class ActivatedRouteMock {
  6. constructor(public snapshot: any) {}
  7. }
  8.  
  9. /* . . . */
  10.  
  11. beforeEach(async(() => {
  12. TestBed.configureTestingModule({
  13. declarations: [ CheckmarkPipe, PhoneDetailComponent ],
  14. providers: [
  15. { provide: Phone, useClass: MockPhone },
  16. { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) }
  17. ]
  18. })
  19. .compileComponents();
  20. }));

对于电话列表组件,还要再做少量的调整,以便路由器能让 RouteLink 指令正常工作。

And for the phone list component, a few adjustments to the router make the RouteLink directives work.

import { NO_ERRORS_SCHEMA } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { Observable, of } from 'rxjs'; import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { SpyLocation } from '@angular/common/testing'; import { PhoneListComponent } from './phone-list.component'; import { Phone, PhoneData } from '../core/phone/phone.service'; /* . . . */ beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ PhoneListComponent ], providers: [ { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) }, { provide: Location, useClass: SpyLocation }, { provide: Phone, useClass: MockPhone }, ], schemas: [ NO_ERRORS_SCHEMA ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(PhoneListComponent); });
app/phone-list/phone-list.component.spec.ts
      
      
  1. import { NO_ERRORS_SCHEMA } from '@angular/core';
  2. import { ActivatedRoute } from '@angular/router';
  3. import { Observable, of } from 'rxjs';
  4. import { async, ComponentFixture, TestBed } from '@angular/core/testing';
  5. import { SpyLocation } from '@angular/common/testing';
  6.  
  7. import { PhoneListComponent } from './phone-list.component';
  8. import { Phone, PhoneData } from '../core/phone/phone.service';
  9.  
  10. /* . . . */
  11.  
  12. beforeEach(async(() => {
  13. TestBed.configureTestingModule({
  14. declarations: [ PhoneListComponent ],
  15. providers: [
  16. { provide: ActivatedRoute, useValue: new ActivatedRouteMock({ params: { 'phoneId': 1 } }) },
  17. { provide: Location, useClass: SpyLocation },
  18. { provide: Phone, useClass: MockPhone },
  19. ],
  20. schemas: [ NO_ERRORS_SCHEMA ]
  21. })
  22. .compileComponents();
  23. }));
  24.  
  25. beforeEach(() => {
  26. fixture = TestBed.createComponent(PhoneListComponent);
  27. });