通知列表在根作用域中定义并且已满,但如果条件变为假,则应将其设置为0
<button style="border-radius: 100%" class="btn btn-danger btn-sm dropdown-toggle" type="button" data-ng-if="notification.createdBy==header_fullName" data-toggle="dropdown">{{notificationList.length}}</button>
&#13;
答案 0 :(得分:0)
你可以试试这个:
<button style="border-radius: 100%" class="btn btn-danger btn-sm dropdown-toggle" type="button" data-toggle="dropdown">{{notification.createdBy==header_fullName ? notificationList.length : '0'}}</button>