From 81dd3a76cf0e0c34976bf97b2fc0479361b6e905 Mon Sep 17 00:00:00 2001 From: Zhicheng Wang Date: Sat, 15 Apr 2017 21:30:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E8=AE=A2=E5=AE=8Cdisplaying=20data?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/docs/ts/latest/cookbook/ajs-quick-reference.jade | 2 +- public/docs/ts/latest/guide/displaying-data.jade | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/public/docs/ts/latest/cookbook/ajs-quick-reference.jade b/public/docs/ts/latest/cookbook/ajs-quick-reference.jade index d8b2eb949c..b49a137902 100644 --- a/public/docs/ts/latest/cookbook/ajs-quick-reference.jade +++ b/public/docs/ts/latest/cookbook/ajs-quick-reference.jade @@ -170,7 +170,7 @@ table(width="100%") For more information, see the [ngFor micro-syntax](../guide/template-syntax.html#microsyntax) section of the [Template Syntax](../guide/template-syntax.html) page. - 要了解更多信息,请参见[模板语法](../guide/template-syntax.html)中的[ngFor微语法](../guide/template-syntax.html#ngForMicrosyntax)部分。 + 要了解更多信息,请参见[模板语法](../guide/template-syntax.html)中的[ngFor微语法](../guide/template-syntax.html#microsyntax)部分。 :marked [Back to top](#top) diff --git a/public/docs/ts/latest/guide/displaying-data.jade b/public/docs/ts/latest/guide/displaying-data.jade index e73524bf4e..69f9416d17 100644 --- a/public/docs/ts/latest/guide/displaying-data.jade +++ b/public/docs/ts/latest/guide/displaying-data.jade @@ -60,7 +60,7 @@ figure.image-display Follow the [setup](setup.html) instructions for creating a new project named displaying-data. - 按照[开发环境](setup.html)的说明,创建一个新项目,名为。 + 按照[开发环境](setup.html)的说明,创建一个新项目,名为displaying-data。 Then modify the app.component.ts file by changing the template and the body of the component. @@ -233,7 +233,7 @@ figure.image-display 注意看`ngFor`双引号表达式中的`hero`,它是一个模板输入变量。 更多模板输入变量的信息,见[模板语法](./template-syntax.html)中的 - [微语法 (microsyntax)](./template-syntax.html#ngForMicrosyntax)。 + [微语法 (microsyntax)](./template-syntax.html#microsyntax)。 Angular duplicates the `
  • ` for each item in the list, setting the `hero` variable to the item (the hero) in the current iteration. Angular uses that variable as the @@ -282,7 +282,7 @@ figure.image-display Create a new file in the `app` folder called `hero.ts` with the following code: - 在`app`目录下创建一个名叫的新文件,内容如下: + 在`app`目录下创建一个名叫`hero.ts`的新文件,内容如下: +makeExcerpt('src/app/hero.ts') @@ -387,7 +387,7 @@ figure.image-display see the [template expressions](./template-syntax.html#template-expressions) section of the [Template Syntax](./template-syntax.html) page. - 双引号中的模板表达式`*ngIf="heros.length > 3"`,外观和行为很象 !{_Lang}。 + 双引号中的模板表达式`*ngIf="heros.length > 3"`,外观和行为很象 TypeScript 。 当组件中的英雄列表有三个以上的条目时,Angular 把这个段落添加到 DOM 中,于是消息显示了出来。 更多信息,见[模板语法](./template-syntax.html)中的[模板表达式](./template-syntax.html#template-expressions)。