式は、アプリケーション データを HTML にバインドするために使用されます。式は、{{expression}} のように二重括弧で囲みます。式内の動作は ng-bind ディレクティブと同じです。 AngularJS アプリケーション式は純粋な JavaScript 式であり、そこで使用されるデータを出力します。
数字を使用する
<p>Expense on Books : {{cost * quantity}} Rs</p>
文字列
を使用します<p>Hello {{student.firstname + " " + student.lastname}}!</p>
オブジェクトを使用
<p>Roll No: {{student.rollno}}</p>
配列を使用する
<p>Marks(Math): {{marks[3]}}</p>
例
次の例は、上記のすべての式を示しています。
testAngularJS.html ファイルのコードは次のとおりです:
<html> <title>AngularJS Expressions</title> <body> <h1>Sample Application</h1> <div ng-app="" ng-init="quantity=1;cost=30; student={firstname:'Mahesh',lastname:'Parashar',rollno:101};marks=[80,90,75,73,60]"> <p>Hello {{student.firstname + " " + student.lastname}}!</p> <p>Expense on Books : {{cost * quantity}} Rs</p> <p>Roll No: {{student.rollno}}</p> <p>Marks(Math): {{marks[3]}}</p> </div> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> </body> </html>
出力
Web ブラウザで textAngularJS.html を開きます。結果は次のようになります: