2
是否为ng-show
的聚合物等效物?这里是什么,我想转换一个片段例如:聚合物相当于ng-show?
<h1>Greeting</h1>
<div ng-show="authenticated">
<p>The ID is {{controller.greeting.id}}</p>
<p>The content is {{controller.greeting.content}}</p>
</div>
<div ng-show="!authenticated">
<p>Login to see your greeting</p>
</div>
dom-if相当于ng-if! –