diff --git a/aio-ja/content/guide/template-syntax.md b/aio-ja/content/guide/template-syntax.md index e3512191f2..1f870dcd87 100644 --- a/aio-ja/content/guide/template-syntax.md +++ b/aio-ja/content/guide/template-syntax.md @@ -283,21 +283,21 @@ Angular の項の中で冪等な式は、 {@a binding-syntax} -## Binding syntax: an overview +## バインディング構文: 概要 -Data-binding is a mechanism for coordinating what users see, specifically -with application data values. -While you could push values to and pull values from HTML, -the application is easier to write, read, and maintain if you turn these tasks over to a binding framework. -You simply declare bindings between binding sources, target HTML elements, and let the framework do the rest. +データバインディングは、アプリケーションのデータ値を使用して、 +ユーザーに表示される内容を調整するための仕組みです。 +HTML に値をプッシュしたり、プルしたりすることはできますが、 +これらの雑用をバインディングフレームワークに任せることで、アプリケーションの読み書きや保守が簡単になります。 +あなたはバインディングソースとターゲット HTML 要素の間のバインディングを宣言するだけで、あとはフレームワークにお任せです。 -For a demonstration of the syntax and code snippets in this section, see the binding syntax example. +このセクションで示す構文のデモとコードスニペットについては バインディング構文の例を参照してください。 -Angular provides many kinds of data-binding. Binding types can be grouped into three categories distinguished by the direction of data flow: +Angular はさまざまな種類のデータバインディングを提供します。バインディングタイプは、データフローの方向によって3つのカテゴリーに分類できます。 -* From the _source-to-view_ -* From _view-to-source_ -* Two-way sequence: _view-to-source-to-view_ +* _ソースからビュー_ +* _ビューからソース_ +* 双方向シーケンス: _ビューとソースの双方向_