本文整理汇总了TypeScript中dexie.Promise.resolve方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Promise.resolve方法的具体用法?TypeScript Promise.resolve怎么用?TypeScript Promise.resolve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dexie.Promise
的用法示例。
在下文中一共展示了Promise.resolve方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: storeHashtagsInTweets
storeHashtagsInTweets(jsons: Twitter.Status[]) {
const entries = [] as HashtagsScheme[];
const push = Array.prototype.push;
for (const j of jsons) {
if (!j.entities || !j.entities.hashtags) {
continue;
}
const hashtags = j.entities.hashtags
.map(h => ({
text: h.text,
timestamp: Date.now(),
}));
push.apply(entries, hashtags);
}
if (entries.length === 0) {
return Dexie.Promise.resolve<void>();
}
return this.table.bulkPut(entries)
.catch((e: Error) => {
log.error('Error on storing hashtags in tweets:', e, entries);
throw e;
});
}