-1
UIC通知のトレースを削除する方法 ユーザーがボタンをクリックできないようにするこれらの通知 ユーザーが再度ポップしてポイントするようになっても、 。殺された後のui通知のトレース
[
私のコントローラのコード
$scope.loginForm = function(isValid) {
// $window.location.href = '/home';
$scope.submitted = true;
if (isValid) {
service.login({
data: {
user: $scope.login
}
}).then(function(response) {
authService.isLoggedIn = response.status == "success";
if (response.status == "success") {
authService.set("userInfo", response.data)
authService.role = response.data.role;
authService.name = response.data.name;
Notification.success({message:'Successfully logged in'});
// Notification.clearAll("Successfully logged in");
}
else{
Notification.success('Invalid Credentials');
}
// console.log(response.data.redirect)
$location.path(response.data.redirect);
});
} else {
Notification.error('Error Login');
}
};
こんにちは、あなたのangularJsコードがあります!あなたのコードはどこですか?人々があなたに答えるのを助けるサンプルはどこにありますか?あなたの質問を改善してください。 – Maher
私はnotification.successだけを使用しました。私は角度コードを添付しました –
"通知サービス"は、単に "成功"機能を持っていますか?このサービスに行き、 "close"または "clear"(それのような)機能が含まれているかどうかを確認してください。 – Maher