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


TypeScript Storage.set方法代碼示例

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


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

示例1: setLocation

	setLocation(data: Object): void {
	    let newData = JSON.stringify(data);
	    this.storage.set('location', newData);		
	}	
開發者ID:Arthurisme,項目名稱:Ionic2Expert,代碼行數:4,代碼來源:data.ts

示例2:

 .subscribe(data => {
       this.local.set('username',this.user.name);
       this.local.set('state',1);
       loading.dismiss();//登錄進度條隱藏
       this.viewController.dismiss(this.user.name)////當前也就是自身進行隱藏並將數據傳遞給用戶中心頁麵
     },error => {
開發者ID:zhangxianmeng,項目名稱:ionicDemo,代碼行數:6,代碼來源:login.ts

示例3: setMyDetails

	setMyDetails(data: Object): void {
	    let newData = JSON.stringify(data);
	    this.storage.set('mydetails', newData);		
	}
開發者ID:Arthurisme,項目名稱:Ionic2Expert,代碼行數:4,代碼來源:data.ts

示例4: setCampDetails

	setCampDetails(data: Object): void {
	    let newData = JSON.stringify(data);
	    this.storage.set('campdetails', newData);		
	}
開發者ID:Arthurisme,項目名稱:Ionic2Expert,代碼行數:4,代碼來源:data.ts

示例5: save

 save(data):void{
   let newData = JSON.stringify(data);
   this.storage.set('settings',newData);
 }
開發者ID:Arthurisme,項目名稱:Ionic2Expert,代碼行數:4,代碼來源:data.ts

示例6: saveTasks

 saveTasks(tasks){
   this.tasks.set('tasks', JSON.stringify(tasks));
 }
開發者ID:EscuelaIt,項目名稱:class7-ionic-2,代碼行數:3,代碼來源:tasks-local.ts

示例7: itemSelected

 itemSelected(item) {
   this.store.set("currrentId", JSON.stringify(item));
   var t: Tabs = this.nav.parent;
   t.select(1);
 }
開發者ID:thgautier92,項目名稱:couchDB,代碼行數:5,代碼來源:form-3.ts

示例8: setLocation

 setLocation(data:Object):void {
     this.storage.set('location', JSON.stringify(data));
 }
開發者ID:johncclayton,項目名稱:campermate,代碼行數:3,代碼來源:data.ts

示例9: onChange

 onChange() {
   console.log(this.language);
   this.local.set('language', this.language);
   this.translate.use(this.language);
 }
開發者ID:quanganh206,項目名稱:ionic2-kitchen-sink-ts,代碼行數:5,代碼來源:settings.ts

示例10:

 storage.get('langCode').then((langCode) => {
   if (langCode == undefined)
     storage.set('langCode', 'th');
   else
     global.langCode = langCode;
 });
開發者ID:RemaxThailand,項目名稱:RemaxMobile,代碼行數:6,代碼來源:app.ts


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