📅  最后修改于: 2020-10-27 02:49:04             🧑  作者: Mango
表达式用于将应用程序数据绑定到HTML。表达式写在双花括号内,例如{{expression}}中。表达式的行为类似于ngbind指令。 AngularJS表达式是纯JavaScript表达式,并在使用它们的位置输出数据。
Expense on Books : {{cost * quantity}} Rs
Hello {{student.firstname + " " + student.lastname}}!
Roll No: {{student.rollno}}
Marks(Math): {{marks[3]}}
以下示例显示了所有上述表达式的使用-
AngularJS Expressions
Sample Application
Hello {{student.firstname + " " + student.lastname}}!
Expense on Books : {{cost * quantity}} Rs
Roll No: {{student.rollno}}
Marks(Math): {{marks[3]}}
在网络浏览器中打开文件testAngularJS.htm并查看结果。