本文整理汇总了TypeScript中@ember/application/instance.lookup函数的典型用法代码示例。如果您正苦于以下问题:TypeScript lookup函数的具体用法?TypeScript lookup怎么用?TypeScript lookup使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了lookup函数的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
@test
public 'service configuration is injected onto the resize service'(assert: Assert) {
const resize = this.instance.lookup('service:resize');
assert.deepEqual(
resize.get('resizeServiceDefaults'),
this.instance.lookup('config:resize-service'),
'defaults are registered to service as "resizeServiceDefaults"',
);
}
示例2: getStorage
async function getStorage(appInstance: ApplicationInstance) {
let adapter = appInstance.lookup('adapter:application');
let namespace = adapter._adapterNamespace();
let storage = await (window as any).localforage.getItem(namespace);
return storage;
}
示例3: ensureRelays
export async function ensureRelays(applicationInstance: ApplicationInstance) {
if (Ember.testing) return;
const store = applicationInstance.lookup('service:store');
const existing = await store.findAll('relay');
const existingHosts = existing.map((e: Relay) => e.host);
return await Promise.all(
defaultRelays.map((defaultRelay, i) => {
if (existingHosts.includes(defaultRelay.host)) {
return;
}
const record = store.createRecord('relay', {
...defaultRelay,
priority: i + 1,
});
return record.save();
})
);
}
示例4: updateStorage
async function updateStorage(appInstance: ApplicationInstance, newValue: any) {
let adapter = appInstance.lookup('adapter:application');
let namespace = adapter._adapterNamespace();
await (window as any).localforage.setItem(namespace, newValue);
}