AngularJS 专题
您的位置:JS框架 > AngularJS专题 > AngularJS表达式
AngularJS表达式
作者:--    发布时间:2019-11-20

表达式用于应用程序数据绑定到html。表达式都写在双括号就像{{表达式}}。表达式中的行为跟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。看到结果如下:


 


网站声明:
本站部分内容来自网络,如您发现本站内容
侵害到您的利益,请联系本站管理员处理。
联系站长
373515719@qq.com
关于本站:
编程参考手册