我正在尝试学习如何牢固地使用 Angular,但我无法理解官方网站上的指南和示例中使用的一些语法。在定义按钮表单控件时,我看到了这个模板:
<div><button type="{{::to.type}}" class="btn btn-{{::to.btnType}}" ng-click="onClick($event)">{{to.text}}</button></div>
我的问题是:“to.type”和“to.btnType”之前的“::”是什么意思?它是如何使用的?这与这样定义有什么不同:
<a ng-class="{'btn-primary': to.isPrimary, active: to.isActive}" class="btn, btn-default"/>