• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript store.get函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript store.getAll函数代码示例发布时间:2022-05-25
下一篇:
TypeScript store.clear函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap