當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript CookieService.remove方法代碼示例

本文整理匯總了TypeScript中angular2-cookie/core.CookieService.remove方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript CookieService.remove方法的具體用法?TypeScript CookieService.remove怎麽用?TypeScript CookieService.remove使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在angular2-cookie/core.CookieService的用法示例。


在下文中一共展示了CookieService.remove方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: logOut

 logOut(){
   this._cookieService.remove("userName");
   this._cookieService.remove("password");
   this._cookieService.remove("userType");
   this._cookieService.remove("userCode");
   this._router.navigate(['LogIn']);
   this._cookieService.get
 }
開發者ID:APROTEC,項目名稱:Web-Application,代碼行數:8,代碼來源:navbarAssociate.component.ts

示例2: remove

    remove(key) {

        this.cache[key] = null;
        delete this.cache[key];
        this._cookieService.remove(key);
        this._localStorage.remove(key);
    }
開發者ID:busidex-vinbrown,項目名稱:orgadmin,代碼行數:7,代碼來源:cache.service.ts

示例3:

					res => {
						if (res.success) {
							this._router.navigate([route])
						} else {
							this.message = res.message
							this._cookieService.remove('token')
						}
					},
開發者ID:Dequisitor,項目名稱:MDash-Nodejs,代碼行數:8,代碼來源:home.router.component.ts

示例4: clearLoginToken

 public clearLoginToken() {
   this._cookieService.remove(this.tokenstorekey);
   this._navibarService.hasToken(false);
 }
開發者ID:CodeMax,項目名稱:Scalable-Shopsystem,代碼行數:4,代碼來源:token.service.ts

示例5: logoutUser

	public logoutUser() {
		this._cookieService.remove('token')
		window.location.href = '/login'
	}
開發者ID:Dequisitor,項目名稱:MDash-Nodejs,代碼行數:4,代碼來源:home.router.component.ts

示例6: logout

	private logout() {
		this._cookieService.remove("email");
		this._mail = "";
		this._router.navigate(['Login']);
	}
開發者ID:chmoreau,項目名稱:lyonroute-webapp,代碼行數:5,代碼來源:app.component.ts

示例7:

this.loginService.loginWithToken(token, false).then(() => {
        this.cookieService.remove('social-authentication');
        this.Auth.authorize(true);
     }, () => {
開發者ID:lrkwz,項目名稱:generator-jhipster,代碼行數:4,代碼來源:_social-auth.component.ts

示例8: logout

 logout(): void {
     this._cookieService.remove(COOKIE_KEY);
 }
開發者ID:JeremyOT,項目名稱:xenon,代碼行數:3,代碼來源:authentication.service.ts

示例9: logout

 logout(){
   this._cookieService.remove("auth");
   this.router.navigate(['new']);
 }
開發者ID:andela-gogbara,項目名稱:Lifelist-angular2,代碼行數:4,代碼來源:app.component.ts

示例10: Logout

 Logout() {
     this._cookieService.remove('blog-admin');
     let link = ['Login'];
     this._router.navigate(link);
 }
開發者ID:phongqt,項目名稱:Angular2-Unit-test,代碼行數:5,代碼來源:admin.header.component.ts


注:本文中的angular2-cookie/core.CookieService.remove方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。