详解AngularJS中的表达式使用_AngularJS
程序员文章站
2022-05-20 13:59:26
...
表达式用于应用程序数据绑定到HTML。表达式都写在双括号就像{{表达式}}。表达式中的行为跟ng-bind指令方式相同。 AngularJS应用表达式是纯javascript表达式,并输出它们被使用的数据在那里。
使用数字
使用数字
Expense on Books : {{cost * quantity}} Rs
使用字符串
Hello {{student.firstname + " " + student.lastname}}!
使用对象
Roll No: {{student.rollno}}
使用数组
Marks(Math): {{marks[3]}}
例子
下面的例子将展示上述所有表达式。
testAngularJS.html 文件代码如下:
AngularJS Expressions Sample Application
Hello {{student.firstname + " " + student.lastname}}!
Expense on Books : {{cost * quantity}} Rs
Roll No: {{student.rollno}}
Marks(Math): {{marks[3]}}
输出
在Web浏览器打开textAngularJS.html。看到结果如下:
推荐阅读
-
详解PHP中的mb_detect_encoding函数使用方法_php技巧
-
深入解析AngularJS框架中$scope的作用与生命周期_AngularJS
-
Mybatis中动态SQL,if,where,foreach的使用教程详解
-
IOS 中KVC的使用方法实例详解
-
详解Swift中对C语言接口缓存的使用以及数组与字符串转为指针类型的方法
-
详解ios中的SQL数据库文件加密 (使用sqlcipher)
-
socket在egg中的使用实例代码详解
-
使用c#在word文档中创建表格的方法详解
-
Python3中使用urllib的方法详解(header,代理,超时,认证,异常处理)
-
详解iOS使用Keychain中的kSecClassGenericPassword存储数据