关于AngularJS 与 Angular 概念的快速参考
AngularJS to Angular concepts: Quick reference
Angular 这个名字专指现在和未来的 Angular 版本,而 AngularJS 专指 Angular 的所有 v1.x 版本。
Angular is the name for the Angular of today and tomorrow. AngularJS is the name for all v1.x versions of Angular.
本章提供了一个快速的参考指南,指出一些常用的 AngularJS 语法及其在 Angular 中的等价物。
This guide helps you transition from AngularJS to Angular by mapping AngularJS syntax to the equivalent Angular syntax.
See the Angular syntax in this
模板基础
Template basics
模板是 Angular 应用中的门面部分,它是用 HTML 写的。下表中是一些 AngularJS 中的关键模板特性及其在 Angular 中的等价语法。
Templates are the user-facing part of an Angular application and are written in HTML. The following table lists some of the key AngularJS template features with their equivalent Angular template syntax.
AngularJS | Angular |
---|---|
绑定/插值Bindings/interpolation
在 AngularJS 中,花括号中的表达式代表单向绑定。 它把元素的值绑定到了与模板相关控制器的属性上。 In AngularJS, an expression in curly braces denotes one-way binding. This binds the value of the element to a property in the controller associated with this template. 当使用 When using the | 绑定/插值Bindings/interpolation
在 Angular 中,花括号中的模板表达式同样代表单向绑定。 它把元素的值绑定到了组件的属性上。 它绑定的上下文变量是隐式的,并且总是关联到组件。 所以,它不需要一个引用变量。 In Angular, a template expression in curly braces still denotes one-way binding. This binds the value of the element to a property of the component. The context of the binding is implied and is always the associated component, so it needs no reference variable. For more information, see the Interpolation section of the Template Syntax page. |
过滤器Filters
要在 AngularJS 中过滤输出,使用管道字符(|)以及一个或多个过滤器。 To filter output in AngularJS templates, use the pipe character (|) and one or more filters. 这个例子中把 This example filters the | 管道Pipes
在 Angular 中,你使用类似的语法 —— 用管道字符(|)来过滤输出,但是现在直接把它叫做管道了。 很多(但不是所有)AngularJS 中的内置过滤器也成了 Angular 中的内置管道。 In Angular you use similar syntax with the pipe (|) character to filter output, but now you call them pipes. Many (but not all) of the built-in filters from AngularJS are built-in pipes in Angular. 请参见下面过滤器/管道了解更多信息。 For more information, see Filters/pipes below. |
局部变量Local variables
这里的 Here, | 输入变量Input variables
Angular 有了真正的模板输入变量,它需要使用 Angular has true template input variables that are explicitly defined using the For more information, see the ngFor micro-syntax section of the Template Syntax page. |
模板指令
Template directives
AngularJS 为模板提供了七十多个内置指令。 在 Angular 中,它们很多都已经不需要了,因为 Angular 有了一个更加强大、快捷的绑定系统。 下面是一些 AngularJS 中的关键指令及其在 Angular 中的等价物。
AngularJS provides more than seventy built-in directives for templates. Many of them aren't needed in Angular because of its more capable and expressive binding system. The following are some of the key AngularJS built-in directives and their equivalents in Angular.
AngularJS | Angular |
---|---|
ng-app
应用的启动过程被称为引导。 The application startup process is called bootstrapping. 虽然可以从代码中引导 Angular 应用, 但很多应用都是通过 Although you can bootstrap an AngularJS app in code, many applications bootstrap declaratively with the | 引导Bootstrapping
Angular 没有引导指令。 总是要通过显式调用一个 Angular doesn't have a bootstrap directive. To launch the app in code, explicitly bootstrap the application's root module ( |
ng-class
在 AngularJS 中, In AngularJS, the 在第一个例子中,如果 In the first example, the 就像第二个例子中所展示的那样,可以同时指定多个类。 You can specify multiple classes, as shown in the second example. | ngClass
在 Angular 中, In Angular, the 在第一个例子中,如果 In the first example, the 就像第二个例子中所展示的那样,可以同时指定多个类。 You can specify multiple classes, as shown in the second example. Angular 还有类绑定,它是单独添加或移除一个类的好办法 —— 就像第三个例子中展示的。 Angular also has class binding, which is a good way to add or remove a single class, as shown in the third example. 要了解更多信息,参见模板语法中的属性、CSS 类和样式绑定部分。 For more information see the Attribute, class, and style bindings section of the Template Syntax page. |
ng-click
在 AngularJS 中, In AngularJS, the 在第一个例子中,如果用户点击了这个按钮,那么控制器的 In the first example, when the user clicks the button, the 第二个例子演示了传入 The second example demonstrates passing in the | 绑定到 |
ng-controller
在 AngularJS 中, In AngularJS, the | 组件装饰器Component decorator
在 Angular 中,模板不用再指定它相关的控制器。 反过来,组件会在组件类的装饰器中指定与它相关的模板。 In Angular, the template no longer specifies its associated controller. Rather, the component specifies its associated template as part of the component class decorator. 要了解更多,请参见架构概览。 For more information, see Architecture Overview. |
ng-hide在 AngularJS 中, In AngularJS, the | 绑定到 |
ng-href
The 在 AngularJS 中, In AngularJS, the
路由在 Angular 中的处理方式不同。 Routing is handled differently in Angular. | 绑定到 |
ng-if
在 AngularJS 中, In AngularJS, the 在这个例子中,除非 In this example, the | *ngIf
Angular 中的 The 在这个例子中,除非 In this example, the 在这个例子中 The (*) before |
ng-model
在 AngularJS 中, In AngularJS, the | ngModel
在 Angular 中,双向绑定使用[()]标记出来,它被形象的比作“盒子中的香蕉”。 这种语法是一个简写形式,用来同时定义一个属性绑定(从组件到视图)和一个事件绑定(从视图到组件),就成了双向绑定。 In Angular, two-way binding is denoted by 要了解使用 ngModel 进行双向绑定的更多知识,参见模板语法中的NgModel—使用 For more information on two-way binding with |
ng-repeat
在 AngularJS 中, In AngularJS, the 在这个例子中,对 In this example, the table row ( | *ngFor
Angular 中的 The 请注意其它语法上的差异: 在 Notice the other syntax differences: The (*) before 要了解更多信息,参见结构性指令。 For more information, see Structural Directives. |
ng-show
在 AngularJS 中, In AngularJS, the 在这个例子中,如果 In this example, the | 绑定到 |
ng-src
The | 绑定到 |
ng-style
在 AngularJS 中, In AngularJS, the 在这个例子中, In the example, the | ngStyle
在 Angular 中, In Angular, the 在第一个例子中, In the first example, the Angular 还有样式绑定语法,它是单独设置一个样式的好方法。它展示在第二个例子中。 Angular also has style binding, which is good way to set a single style. This is shown in the second example. 要了解关于样式绑定的更多知识,参见模板语法中的样式绑定部分。 For more information on style binding, see the Style binding section of the Template Syntax page. 要了解关于 For more information on the |
ng-switch
在 AngularJS 中, In AngularJS, the 在这个例子中,如果 In this example, if | ngSwitch
在 Angular 中, In Angular, the 在这个例子中,如果 In this example, if 在这个例子中, The (*) before 要了解更多信息,参见模板语法中的NgSwitch 指令部分。 For more information, see The NgSwitch directives section of the Template Syntax page. |
过滤器/管道
Filters/pipes
Angular 中的管道为模板提供了格式化和数据转换功能,类似于 AngularJS 中的过滤器。 AngularJS 中的很多内置过滤器在 Angular 中都有对应的管道。 要了解管道的更多信息,参见Pipes。
Angular pipes provide formatting and transformation for data in the template, similar to AngularJS filters. Many of the built-in filters in AngularJS have corresponding pipes in Angular. For more information on pipes, see Pipes.
AngularJS | Angular |
---|---|
currency
把一个数字格式化成货币。 Formats a number as currency. | currency
Angular 的 The Angular |
date
基于要求的格式把日期格式化成字符串。 Formats a date to a string based on the requested format. | date
Angular 的 The Angular |
filter
根据过滤条件从指定的集合中选取出一个子集。 Selects a subset of items from the defined collection, based on the filter criteria. | 没了none在 Angular 中,出于性能的考虑,并没有一个类似的管道。 过滤逻辑应该在组件中用代码实现。 如果它将被复用在几个模板中,可以考虑构建一个自定义管道。 For performance reasons, no comparable pipe exists in Angular. Do all your filtering in the component. If you need the same filtering code in several templates, consider building a custom pipe. |
json
把一个 JavaScript 对象转换成一个 JSON 字符串。这对调试很有用。 Converts a JavaScript object into a JSON string. This is useful for debugging. | json
Angular 的 The Angular |
limitTo
从集合中选择从(第二参数指定的)起始索引号(0)开始的最多(第一参数指定的)条目数(2)个条目。 Selects up to the first parameter (2) number of items from the collection starting (optionally) at the beginning index (0). | slice
The |
lowercase
把该字符串转成小写形式。 Converts the string to lowercase. | lowercase
Angular 的 The Angular |
number
把数字格式化为文本。 Formats a number as text. | number
Angular 的 The Angular Angular 还有一个 Angular also has a |
orderBy
使用表达式中所指定的方式对集合进行排序。 在这个例子中, Displays the collection in the order specified by the expression. In this example, the movie title orders the | 没了none在 Angular 中,出于性能的考虑,并没有一个类似的管道。 排序逻辑应该在组件中用代码实现。 如果它将被复用在几个模板中,可以考虑构建一个自定义管道。 For performance reasons, no comparable pipe exists in Angular. Instead, use component code to order or sort results. If you need the same ordering or sorting code in several templates, consider building a custom pipe. |
模块/控制器/组件
Modules/controllers/components
无论在 AngularJS 还是 Angular 中,“模块”都会帮你把应用拆分成一些内聚的功能块。
In both AngularJS and Angular, modules help you organize your application into cohesive blocks of functionality.
在 AngularJS 中,你要在控制器中写代码,来为视图提供模型和方法。 在 Angular 中,你要创建组件。
In AngularJS, you write the code that provides the model and the methods for the view in a controller. In Angular, you build a component.
因为很多 AngularJS 的代码是用 JavaScript 写的,所以在 AngularJS 列显示的是 JavaScript 代码,而 Angular 列显示的是 TypeScript 代码。
Because much AngularJS code is in JavaScript, JavaScript code is shown in the AngularJS column. The Angular code is shown using TypeScript.
AngularJS | Angular |
---|---|
IIFE
在 AngularJS 中,用立即调用的函数表达式(IIFE)来包裹控制器代码可以让控制器代码不会污染全局命名空间。 In AngularJS, an immediately invoked function expression (or IIFE) around controller code keeps it out of the global namespace. | 没了none在 Angular 中不用担心这个问题,因为使用 ES 2015 的模块,模块会替你处理命名空间问题。 This is a nonissue in Angular because ES 2015 modules handle the namespacing for you. For more information on modules, see the Modules section of the Architecture Overview. |
Angular 模块Angular modules
在 AngularJS 中,Angular 模块用来对控制器、服务和其它代码进行跟踪。第二个参数定义该模块依赖的其它模块列表。 In AngularJS, an Angular module keeps track of controllers, services, and other code. The second argument defines the list of other modules that this module depends upon. | NgModules
Angular 的模块用 NgModules, defined with the * * 要了解关于模块的更多知识,参见NgModules。 For more information on modules, see NgModules. |
控制器注册Controller registration
在 AngularJS 中,在每个控制器中都有一些代码,用于找到合适的 Angular 模块并把该控制器注册进去。 AngularJS has code in each controller that looks up an appropriate Angular module and registers the controller with that module. 第一个参数是控制器的名称,第二个参数定义了所有将注入到该控制器的依赖的字符串名称,以及一个到控制器函数的引用。 The first argument is the controller name. The second argument defines the string names of all dependencies injected into this controller, and a reference to the controller function. | 组件装饰器Component decorator
Angular 会往组件类上添加了一个装饰器,以提供所需的任何元数据。 Angular adds a decorator to the component class to provide any required metadata. The 这就是把模板关联到代码的方式,它定义在组件类中。 This is how you associate a template with logic, which is defined in the component class. For more information, see the Components section of the Architecture Overview page. |
控制器函数Controller function
在 AngularJS 中,你在控制器函数中编写模型和方法的代码。 In AngularJS, you write the code for the model and methods in a controller function. | 组件类Component class
在 Angular 中,你将创建一个组件类来容纳数据模型和控制方法。使用 TypeScript 的 In Angular, you create a component class to contain the data model and control methods. Use the TypeScript For more information, see the Components section of the Architecture Overview page. |
依赖注入Dependency injection
在 AngularJS 中,你把所有依赖都作为控制器函数的参数。 这个例子注入了一个 In AngularJS, you pass in any dependencies as controller function arguments. This example injects a 为了防止在最小化时出现问题,第一个参数明确告诉 Angular 它应该注入一个 To guard against minification problems, tell Angular explicitly that it should inject an instance of the | 依赖注入Dependency injection
在 Angular 中,你要把依赖作为组件构造函数的参数传入。 这个例子注入了一个 In Angular, you pass in dependencies as arguments to the component class constructor. This example injects a 要了解关于依赖注入的更多信息,参见架构概览中的依赖注入部分。 For more information, see the Dependency injection section of the Architecture Overview. |
样式表
Style sheets
样式表让你的应用程序看起来更漂亮。 在 AngularJS 中,你要为整个应用程序指定样式表。 随着应用程序的不断成长,为各个部分指定的样式会被合并,导致无法预计的后果。 在 Angular 中,你仍然要为整个应用程序定义样式,不过现在也可以把样式表封装在特定的组件中。
Style sheets give your application a nice look. In AngularJS, you specify the style sheets for your entire application. As the application grows over time, the styles for the many parts of the application merge, which can cause unexpected results. In Angular, you can still define style sheets for your entire application. But now you can also encapsulate a style sheet within a specific component.
AngularJS | Angular |
---|---|
Link 标签Link tag
AngularJS 在 AngularJS, uses a | 样式配置Styles configuration
使用 Angular CLI,你可以在 With the Angular CLI, you can configure your global styles in the StyleUrls在 Angular 中,你可以在 In Angular, you can use the
这让你可以为各个组件设置合适的样式,而不用担心它泄漏到程序中的其它部分。 This allows you to set appropriate styles for individual components that won’t leak into other parts of the application. |