表达式用于应用程序数据绑定到html。表达式都写在双括号就像{{表达式}}。表达式中的行为跟ng-bind指令方式相同。 angularjs应用表达式是纯javascript表达式,并输出它们被使用的数据在那里。
AngularJS表达式格式 : {{expression }}
AngularJS表达式可以是字符串、数字、运算符和变量
数字运算{{1 + 5}}
字符串连接{{ 'abc' + 'bcd' }}
变量运算 {{ firstName + " " + lastName }}, {{ quantity * cost }}
对象{{ person.lastName }}
数组{{ points[2] }}
AngularJS例子
1.Angularjs数字
<div ng-app="" ng-init="quantity=2;cost=5">
<p>总价: {{ quantity * cost }}</p>
</div> 上例输出:
总价:10
代码注释:
ng-init="quantity=2;cost=5" //相当于javascript里的var quantity=2,cost=5;
使用ng-bind可以实现相同的功能
<div ng-app="" ng-init="quantity=1;cost=5">
<p>总价: <span ng-bind="quantity * cost"></span></p>
<div class="aritcle_card">
<a class="aritcle_card_img" href="/xiazai/learn/3362">
<img src="https://img.php.cn/upload/webcode/000/000/000/5a54771f97396132.png" alt="正则表达式30分钟入门教程">
</a>
<div class="aritcle_card_info">
<a href="/xiazai/learn/3362">正则表达式30分钟入门教程</a>
<p>正则表达式30分钟入门教程</p>
<div class="">
<img src="/static/images/card_xiazai.png" alt="正则表达式30分钟入门教程">
<span>290</span>
</div>
</div>
<a href="/xiazai/learn/3362" class="aritcle_card_btn">
<span>查看详情</span>
<img src="/static/images/cardxiayige-3.png" alt="正则表达式30分钟入门教程">
</a>
</div>
//这里的ng-bind相当于指定了span的innerHTML
</div> 2.Angularjs字符串
<div ng-app="" ng-init="firstName='John';lastName='Snow'">
<p>姓名: {{ firstName + " " + lastName }}</p>
</div> 输出
姓名:Jone Snow
3. AngularJS对象
<div ng-app="" ng-init="person={firstName:'John',lastName:'Snow'}">
<p>姓为 {{ person.lastName }}</p>
</div> 输出
姓为 Snow
4.AngularJS数组
<div ng-app="" ng-init="points=[1,15,19,2,40]">
<p>第三个值为 {{ points[2] }}</p>
</div>输出
第三个值为 19
以上所述是小编给大家介绍的AngularJS入门教程之AngularJS表达式的相关介绍,希望对大家有所帮助!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号