From 56004468e905c39aee32b7f3c7b762923e041f8d Mon Sep 17 00:00:00 2001 From: sphawkcn Date: Thu, 10 Sep 2020 12:02:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=91=E8=AE=B8=E6=96=87=E5=AD=97=E9=94=99?= =?UTF-8?q?=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 这装饰器会标出 => 这些装饰器会标出 了解这些这些类 => 了解这些类 --- aio/content/guide/architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/architecture.md b/aio/content/guide/architecture.md index 59fb330f73..3a32a79017 100644 --- a/aio/content/guide/architecture.md +++ b/aio/content/guide/architecture.md @@ -29,7 +29,7 @@ NgModule 会把相关的代码收集到一些功能集中。Angular 应用就是 Modules, components and services are classes that use *decorators*. These decorators mark their type and provide metadata that tells Angular how to use them. -模块、组件和服务都是使用*装饰器*的类,这*装饰器*会标出它们的类型并提供元数据,以告知 Angular 该如何使用它们。 +模块、组件和服务都是使用*装饰器*的类,这些*装饰器*会标出它们的类型并提供元数据,以告知 Angular 该如何使用它们。 * The metadata for a component class associates it with a *template* that defines a view. A template combines ordinary HTML with Angular *directives* and *binding markup* that allow Angular to modify the HTML before rendering it for display. @@ -111,7 +111,7 @@ The `@Component()` decorator identifies the class immediately below it as a comp Decorators are functions that modify JavaScript classes. Angular defines a number of decorators that attach specific kinds of metadata to classes, so that the system knows what those classes mean and how they should work. - 装饰器是一些用于修饰 JavaScript 类的函数。Angular 定义了许多装饰器,这些装饰器会把一些特定种类的元数据附加到类上,以便 Angular 了解这些这些类的含义以及该如何使用它们。 + 装饰器是一些用于修饰 JavaScript 类的函数。Angular 定义了许多装饰器,这些装饰器会把一些特定种类的元数据附加到类上,以便 Angular 了解这些类的含义以及该如何使用它们。 Learn more about decorators on the web.