本文整理汇总了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();
};
示例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;
}
});
示例3:
return Observable.create(o => {
let mylocation = store.get('mylocation')
if (mylocation) {
o.next(mylocation)
} else {
o.next(false)
}
})
示例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;
}
}
示例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[];
}
}
示例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)
});
示例7: get
/**
* Get data from local storage identified by key.
*
* @param {string} key
* @returns
*/
get(key: string) {
return STORE.get(key);
}
示例8: JwtTokenGetter
export function JwtTokenGetter(): string {
return store.get("token");
}
示例9:
const removeFromAutomaticVisitingList = (id: string) => {
const programsShouldOpen = store.get(AUTOMATIC_VISITING_KEY, {});
delete programsShouldOpen[id];
store.set(AUTOMATIC_VISITING_KEY, programsShouldOpen);
};
示例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);