本文整理匯總了TypeScript中@providers/auth-data-persistence.AuthDataPersistenceService類的典型用法代碼示例。如果您正苦於以下問題:TypeScript AuthDataPersistenceService類的具體用法?TypeScript AuthDataPersistenceService怎麽用?TypeScript AuthDataPersistenceService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了AuthDataPersistenceService類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(
public http: HttpClient,
public authDataPersistenceService: AuthDataPersistenceService
) {
this.authData$ = authDataPersistenceService.getAuthDataObserver();
this.reset();
this.authData$.subscribe( authData => {
console.log('AuthData updated', authData);
if (authData) {
try {
this.domain = authData.visitor.site;
this.token = authData.token;
} catch (err) {
this.reset();
console.error(err);
/**
* TODO: use error native method of Observable
*/
}
} else {
this.reset();
}
});
}
示例2:
.then((response: Auth) => {
console.log('AuthService, signIn succeed');
if (response.error === 'password expired') {
this.authDataPersistenceService.set(response);
return Promise.reject({message: 'passwordExpired'});
} else {
return this.authDataPersistenceService.save(response);
}
});
示例3: ionViewCanEnter
ionViewCanEnter(): boolean {
const isAuth = this.authDataPersistenceService.isAuthenticated();
/**
* workaround to redirect on ionViewCanEnter
* see https://github.com/ionic-team/ionic/issues/11405#issuecomment-365163495
*/
if (isAuth) {
setTimeout(() => this.navCtrl.setRoot('HomePage'), 0);
}
return !isAuth;
}
示例4: Promise
return new Promise((resolve, reject) => {
authDataPersistenceService.checkToken().then(authData => {
resolve();
});
});
示例5: signOut
signOut(): Promise<void> {
return this.authDataPersistenceService.clear();
}
示例6: ionViewCanEnter
ionViewCanEnter(): boolean {
return this.authDataPersistenceService.isAuthenticated();
}