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


TypeScript Storage.clear方法代碼示例

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


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

示例1: clearData

 clearData() {
   this.storage.clear();
   this.gameService.planetName = 'Exodus';
   this.gameService.game = new Game();
   this.gameService.generatePlanets(3);
   this.storage.set('game', JSON.stringify(this.gameService.game));
   this.navCtrl.goToRoot({});
 }
開發者ID:slciesla,項目名稱:Exodus2,代碼行數:8,代碼來源:options.ts

示例2: initStorage

  async initStorage() {
    await this.storage.ready()
    await this.storage.clear()

    const raw = await this.http.get('/assets/preload.json').toPromise()
    const data = raw.json()
    return Promise.all(
      Object.entries(data).map(([key, recipe]) =>
        this.storage.set(key, recipe)))
  }
開發者ID:,項目名稱:,代碼行數:10,代碼來源:

示例3:

      }).toPromise().then((res:any) => {
        let data = res;
        console.log(data);
        if (data.result === false) {
          let alert = this.alertCtrl.create({
            title: 'Ops',
            subTitle: 'username and password are incorrent!',
            buttons: ['OK'],
          });
          alert.present();

        } else {
          this.storage.clear().then(()=>{
            this.storage.set('user', {
              userName:uname,
              imgUrl:data.imgUrl,
              user:data.user,
            }).then((result) => {
              if (result ) { 
                this.navCtrl.push(HomePage1); //跳轉
              } else {
                let alert = this.alertCtrl.create({
                  title: 'Opss',
                  subTitle: 'cannot save user info',
                  buttons: ['OK'],
                });
                alert.present();
              }
  
            }).catch((error) => {
              //出錯了彈框
              let alert = this.alertCtrl.create({
                title: 'Opss',
                subTitle: error,
                buttons: ['OK'],
              });
              alert.present();
            })


          });
      
        }


      }).catch((error:Error) => {
開發者ID:classOnline,項目名稱:classOnline,代碼行數:46,代碼來源:LoginPage.ts

示例4: removeAll

 removeAll(){
     return this._storage.clear()
 }
開發者ID:hivoova,項目名稱:travelsafe-operator,代碼行數:3,代碼來源:storage.ts

示例5: resetData

 resetData() {
   this.storage.clear();
 }
開發者ID:Microsmsm,項目名稱:Dawaey,代碼行數:3,代碼來源:settings.ts

示例6: clear

 public clear(): any {
   return this.storage.clear();
 }
開發者ID:Beethovenw,項目名稱:Elastos.ORG.Wallet.Mobile,代碼行數:3,代碼來源:Localstorage.ts

示例7: signOut

 signOut() {
   //this.storage.remove('user')
   this.storage.clear()
   return this.afAuth.auth.signOut()
 }
開發者ID:Microsmsm,項目名稱:Dawaey,代碼行數:5,代碼來源:auth.ts

示例8: clear

 clear() {
     return this.storage.clear();
 }
開發者ID:zarautz,項目名稱:munoa,代碼行數:3,代碼來源:cache.service.ts

示例9: clearStorage

	clearStorage() {
		this.storage.clear();
	}
開發者ID:qwb0920,項目名稱:ionic-uuchat,代碼行數:3,代碼來源:setting.ts

示例10: loginOut

 loginOut() {
   this.events.publish('messageCount', 0);
   this.storage.clear();
   this.badge.clear().then().catch(error => console.log(error));
   this.navCtrl.pop();
 }
開發者ID:lqxlcc,項目名稱:Ionic2-CNodeClub,代碼行數:6,代碼來源:account.ts


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