|
1 | 1 | @ngdoc overview |
2 | | -@name Developer Guide: About MVC in Angular: Understanding the View Component |
| 2 | +@name Developer Guide: Angular の MVC について : ビューコンポーネントを理解する |
3 | 3 | @description |
4 | 4 |
|
5 | | -In Angular, the view is the DOM loaded and rendered in the browser, after Angular has transformed |
6 | | -the DOM based on information in the template, controller and model. |
| 5 | +Angular がテンプレート・コントローラ・モデルの情報をもとに変換し、 |
| 6 | +ブラウザに読み込まれ描画される DOM のことを Angular ではビューといいます。 |
7 | 7 |
|
8 | 8 | <img src="img/guide/about_view_final.png"> |
9 | 9 |
|
10 | | -In the Angular implementation of MVC, the view has knowledge of both the model and the controller. |
11 | | -The view knows about the model where two-way data-binding occurs. The view has knowledge of the |
12 | | -controller through Angular directives, such as {@link api/ng.directive:ngController |
13 | | -ngController} and {@link api/ng.directive:ngView ngView}, and through bindings of this form: |
14 | | -`{{someControllerFunction()}}`. In these ways, the view can call functions in an associated |
15 | | -controller function. |
| 10 | +Angular の MVC 実装では、ビューはモデルとコントローラについての情報を持っています。 |
| 11 | +ビューには双方向データバインディングが行われているモデルが分かっています。 |
| 12 | +また、 {@link api/ng.directive:ngController ngController} や |
| 13 | +{@link api/ng.directive:ngView ngView} ディレクティブ、 |
| 14 | +`{{someControllerFunction()}}` の形式のバインディングを通して、 |
| 15 | +ビューはコントローラの情報を得ています。 |
| 16 | +このような実装なので、 |
| 17 | +ビューは関連付けられたコントローラ関数に含まれる関数を呼び出すことができるのです。 |
16 | 18 |
|
17 | 19 |
|
18 | | -## Related Topics |
| 20 | +## 関連トピック |
19 | 21 |
|
20 | | -* {@link dev_guide.mvc About MVC in Angular} |
21 | | -* {@link dev_guide.mvc.understanding_model Understanding the Model Component} |
22 | | -* {@link dev_guide.mvc.understanding_controller Understanding the Controller Component} |
| 22 | +* {@link dev_guide.mvc Angular における MVC} |
| 23 | +* {@link dev_guide.mvc.understanding_model モデルコンポーネントを理解する} |
| 24 | +* {@link dev_guide.mvc.understanding_controller コントローラコンポーネントを理解する} |
0 commit comments