more review for displaying-data and appended english font-family.

This commit is contained in:
Zhimin YE (Rex) 2016-05-27 10:41:49 +01:00
parent c1efe5e46f
commit 4f3050aeed
2 changed files with 9 additions and 9 deletions

View File

@ -132,13 +132,13 @@ include ../_quickstart_repo
We're ready to see changes in a running app by firing up the npm script that both compiles and serves our applications
while watching for changes.
通过运行npm脚本它能编译并启动一个能监视变化的服务器我们能看到运行中的应用发生的变化。
通过运行npm脚本它能编译并启动一个能监视文件变化的服务器),我们能看到运行中的应用发生的变化。
code-example(format="").
npm start
:marked
We should see the title and hero name:
我们应该能看到标题和英雄名变了
我们应该能看到标题和英雄名:
figure.image-display
img(src="/resources/images/devguide/displaying-data/title-and-hero.png" alt="标题和英雄")
@ -149,16 +149,16 @@ figure.image-display
## Template inline or template file?
## 内模板还是模板文件?
## 内联(inline)模板还是模板文件?
We can store our component's template in one of two places.
We can define it *inline* using the `template` property, as we do here.
Or we can define the template in a separate HTML file and link to it in
the component metadata using the `@Component` decorator's `templateUrl` property.
我们有两种地方可用来存放组件模板。
我们可以使用`template`属性把它定义为 *内联(Inline)* 的,就像这里所做的一样。
或者可以把模板定义在一个独立的HTML文件中并且在组件元数据`@Component`装饰器中的`templateUrl`属性链接到它
我们有两种地方可用来存放组件模板。
我们可以使用`template`属性把它定义为 *内联* 的,就像这里所做的一样。
或者可以把模板定义在一个独立的HTML文件中并且通过在`@Component`装饰器中的`templateUrl`属性把它链接到组件
The choice between inline and separate HTML is a matter of taste,
circumstances, and organization policy.
@ -174,7 +174,7 @@ figure.image-display
## Constructor or variable initialization?
## 初始化:构造函数还是变量?
## 初始化:使用构造函数还是变量?
We initialized our component properties using variable assignment.
This is a wonderfully concise and compact technique.
@ -204,7 +204,7 @@ figure.image-display
We want to display a list of heroes. We begin by adding a mock heroes name array to the component,
just above `myHero`, and redefine `myHero` to be the first name in the array.
我们准备显示一个英雄列表。先在组件的`myHero`属性上方添加一个模拟(Mock)的英雄名字数组,把`myHero`重定义为数组中的第一个名字。
我们准备显示一个英雄列表。先在组件的`myHero`属性上方添加一个模拟(Mock)的英雄名字数组,然后把`myHero`重定义为数组中的第一个名字。
+makeExample('displaying-data/ts/app/app.component.2.ts', 'mock-heroes', 'app/app.component.ts (类)')(format=".")
:marked

View File

@ -19,5 +19,5 @@ td, th {
}
body,.main-nav .main-nav-button {
font-family:"Microsoft YaHei",,"Microsoft JhengHei",,STHeiti,MingLiu !important;
font-family:"Microsoft YaHei",,"Microsoft JhengHei",,STHeiti,MingLiu, "Roboto","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande"!important;
}