角度jを使用して通知リストを作成しています。私は通知リストを隠すことができ、隠れた通知を取り消すことができる各通知リストの右側にドロップダウンがあります。 ng-attr-idを使用して各通知リストにIDを割り当てており、それを隠すためにクラスを追加しています。それはうまく動作しますが、ページを更新すると隠れた通知が表示されます。どうすればこれを防ぐことができますか?事前に おかげ角度jsを使用してリストを非表示/元に戻す
HTML
<md-list-item class="md-2-line" ng-repeat="notification in notificationList" ng-attr-id="{{ 'notification-list-' + $index }}">
<div class="md-list-item-text">
<div class="notification-content">
<div class="ng-flex-box">
<label class="notification-header label" data-ng-bind="notification.content"></label>
</div>
<label class="notification-message" data-ng-bind="notification.applicationId"></label>
<label class="notification-category" data-ng-bind="notification.category"></label>
<div>
<span class="notification-date pull-right" data-ng-bind="notification.date"></span>
</div>
</div>
<md-menu>
<i class="icon icon-sm icon-tree_open" aria-hidden="true"></i>
<md-menu-content class="hide-notification-content">
<md-menu-item>
<a href="#" ng-click="$ctrl.hideNotification($index)">Hide this notification</a>
</md-menu-item>
<md-menu-item>
<a href="#">Manage notification from this app</a>
</md-menu-item>
</md-menu-content>
</md-menu>
</div>
</md-list-item>
JS
$ctrl.hideNotification = function (id) {
$ctrl.notificationListId= id;
angular.element('#notification-list-'+$ctrl.notificationListId).addClass('hide-notification-class');
}
CSS
.hide-notification-class{
display: none;
}
最初にページを読み込むと、通知は非表示になっていますか?エレメントに 'hide-notification-class'クラスを追加するだけでなく、後でそれを表示するためにボタンをクリックしてください。 – cjmling
番号。最初はすべての通知を表示する必要があります。ユーザーは自分の設定に基づいてクリック時にそれを隠すことができるはずです@cjmling – Shareer
ユーザーが非表示にすると、後でユーザーがページをリロードします。 – cjmling