本文整理匯總了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);
}