翻译了一些合并时遗漏的内容

This commit is contained in:
Zhicheng Wang 2016-07-16 18:29:42 +08:00
parent 3e9394f62a
commit 1d107eafb3
2 changed files with 16 additions and 8 deletions

View File

@ -23,6 +23,9 @@ block includes
We almost think of them as styles.
In fact, we'd like to apply them in our HTML templates as we do styles.
显然,有些值最好显示成用户友好的格式。我们很快就会发现,在很多不同的应用中,都在重复做出某些相同的变换。
我们几乎会把它们看做某种CSS样式事实上我们也确实更喜欢在HTML模板中应用它们 —— 就像CSS样式一样。
Introducing Angular pipes, a way to write display-value transformations that we can declare in our HTML!
Try the <live-example></live-example>.
@ -253,14 +256,17 @@ figure.image-display
Angular built-in pipes are pre-registered.
Custom pipes must be registered manually.
p.
If we try the #[+liveExampleLink()],
we can probe its behavior by changing the value and the optional exponent in the template.
如果我们忘了列出这个自定义管道Angular就会报告一个错误。
在前一个例子中我们没有把`DatePipe`列进去这是因为Angular所有的内建管道都已经预注册过了。
但自定义管道必须手工注册。
:marked
If we try the <live-example></live-example>,
we can probe its behavior by changing the value and the optional exponent in the template.
如果我们试一下这个<live-example></live-example>,就可以通过修改值和模板中的可选部分来体会其行为。
## Power Boost Calculator (extra-credit)
## 能力倍增计算器(加分项)
@ -511,6 +517,7 @@ block pure-change
+makeExample('pipes/ts/app/flying-heroes.pipe.ts','filter')(format='.')
:marked
We can derive a `FlyingHeroesImpureComponent` that we derive from the `FlyingHeroesComponent`.
我们可以从`FlyingHeroesComponent`派生出一个`FlyingHeroesImpureComponent`。

View File

@ -108,6 +108,7 @@ var sourceVisible = localStorage.getItem('source-visible') === 'true';
function isPureEnglish(text) {
// accept &mdash; , quotes, ® and façade too.
text = text.replace('在线例子', '');
return /^[\1-\255—“”ç®…à]*$/.test(text);
}