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


TypeScript store.get函數代碼示例

本文整理匯總了TypeScript中store.get函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript get函數的具體用法?TypeScript get怎麽用?TypeScript get使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: Poster

const notify = (program: Program) => {
  const poster = new Poster(program.title, program.community.thumbnailUrl, program.id);
  const shouldRing = store.get("options.playsound.enable") || "enable";
  if (shouldRing == "enable") {
    const name = store.get("options.soundfile") || "ta-da.mp3";
    const volume = store.get("options.playsound.volume") || 1.0;
    const bell = new Bell(name).volume(volume);
    poster.bell(bell);
  }
  const duration = store.get("options.openingNotification.duration") || 6;
  poster.duration(duration);
  poster.launch();
};
開發者ID:tsuyuno,項目名稱:imanani,代碼行數:13,代碼來源:Pipe.ts

示例2: notify

 bucket.takeProgramsShouldNotify(client).forEach((p, index, array) => {
   const distributors = store.get(`excludedDistributors`) || {};
   const shouldPopup = store.get("options.popup.enable") || "enable";
   if (!isInitialCheck &&
     !distributors.hasOwnProperty(p.community.id) &&
     shouldPopup == "enable"
   ) {
     notify(p);
   }
   if (index == array.length - 1) {
     isInitialCheck = false;
   }
 });
開發者ID:tsuyuno,項目名稱:imanani,代碼行數:13,代碼來源:Pipe.ts

示例3:

 return Observable.create(o => {
     let mylocation = store.get('mylocation')
     if (mylocation) {
         o.next(mylocation)
     } else {
         o.next(false)
     }
 })
開發者ID:meepobrother,項目名稱:meepo,代碼行數:8,代碼來源:location.ts

示例4: canActivate

 canActivate(
     route: ActivatedRouteSnapshot,
     state: RouterStateSnapshot
 ): Observable<boolean> | Promise<boolean> | boolean {
     const isLogin = store.get('isLogin');
     if(this.login.isLogin || isLogin){
         return true;
     }else{
         this.router.navigate(['/login']);
         // return true;
     }
 }
開發者ID:meepobrother,項目名稱:meepo,代碼行數:12,代碼來源:pages.guards.ts

示例5: getHistory

// Tests for storagejs.d.ts
import * as store from 'store';
import * as engine from 'store/src/store-engine';

// https://github.com/marcuswestin/store.js/#api

// Store current user
store.set('user', { name:'Marcus' });

// Get current user
store.get('user');

// Remove current user
store.remove('user');

// Clear all keys
store.clearAll();

// Loop over all stored values
store.each(function(value, key) {
    console.log(key, '==', value)
});

// https://github.com/marcuswestin/store.js/#write-your-own-plugin

// Example plugin that stores a version history of every value
declare global {
    interface StoreJsAPI {
        getHistory(key: string): any[];
    }
}
開發者ID:AbraaoAlves,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:storejs-tests.ts

示例6: alert

import * as store from 'store';

// Store 'marcus' at 'username'
store.set('username', 'marcus');

// Get 'username'
store.get('username');

// Remove 'username'
store.remove('username');

// Clear all keys
store.clear();

// Store an object literal - store.js uses JSON.stringify under the hood
store.set('user', { name: 'marcus', likes: 'javascript' });

// Get the stored object - store.js uses JSON.parse under the hood
var user = store.get('user');
alert(user.name + ' likes ' + user.likes);

// Get all stored values
store.getAll().user.name == 'marcus';

// Loop over all stored values
store.forEach(function(key, val) {
    console.log(key, '==', val)
});
開發者ID:Jeremy-F,項目名稱:DefinitelyTyped,代碼行數:28,代碼來源:store-tests.ts

示例7: get

 /**
  * Get data from local storage identified by key.
  *
  * @param {string} key
  * @returns
  */
 get(key: string) {
   return STORE.get(key);
 }
開發者ID:websublime,項目名稱:angular2-webpack-starter,代碼行數:9,代碼來源:persistence.ts

示例8: JwtTokenGetter

export function JwtTokenGetter(): string {
    return store.get("token");
}
開發者ID:MattJeanes,項目名稱:SystemChecker,代碼行數:3,代碼來源:app.module.ts

示例9:

const removeFromAutomaticVisitingList = (id: string) => {
  const programsShouldOpen = store.get(AUTOMATIC_VISITING_KEY, {});
  delete programsShouldOpen[id];
  store.set(AUTOMATIC_VISITING_KEY, programsShouldOpen);
};
開發者ID:tsuyuno,項目名稱:imanani,代碼行數:5,代碼來源:Pipe.ts

示例10:

// Tests for storagejs.d.ts
import * as store from 'store';

// Store 'marcus' at 'username'
store.set('username', 'marcus');

// Get 'username'
var userName:any = store.get('username');

var all: Object = store.getAll();

// Remove 'username'
store.remove('username');

// Clear all keys
store.clear();

// Store an object literal - store.js uses JSON.stringify under the hood
store.set('user', { name: 'marcus', likes: 'javascript' });

// Get the stored object - store.js uses JSON.parse under the hood
var user: any = store.get('user');
alert(user.name + ' likes ' + user.likes);

開發者ID:HawkHouseIntegration,項目名稱:DefinitelyTyped,代碼行數:23,代碼來源:storejs-tests.ts


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