本文整理汇总了TypeScript中localforage.localforage.setItem方法的典型用法代码示例。如果您正苦于以下问题:TypeScript localforage.setItem方法的具体用法?TypeScript localforage.setItem怎么用?TypeScript localforage.setItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类localforage.localforage
的用法示例。
在下文中一共展示了localforage.setItem方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getZbook
async function getZbook(book : Book) : Promise<Database> {
let file = files[book.file];
if (!file) {
file = await localforage.getItem<BookFile>(book.file);
if (file) {
if (file.version !== book.file_version) {
// Update book in background.
fetchBinary(
book.url,
"Updating book " + book.name + "..."
).then(data => {
file.data = data;
// TODO: notify UI book has been updated
files[book.file] = file;
return localforage.setItem(book.file, file);
});
}
}
else {
file = {
version: book.file_version,
data: await fetchBinary(
book.url,
"Downloading book " + book.name + "..."
)
};
await localforage.setItem(book.file, file);
}
}
return new Database(inflate(file.data));
}
示例2: updateCatalog
async function updateCatalog(language) : Promise<Folder> {
let update = await fetchJson(
"http://tech.lds.org/glweb?action=catalog.query.modified&languageid=" +
language + "&platformid=" + platform + "&format=json",
"Checking for catalog updates..."
);
let version = update.version;
if (version == await localforage.getItem("version")) {
console.log("No catalog updates.");
return;
}
let result = await fetchJson(
"http://tech.lds.org/glweb?action=catalog.query&languageid=" +
language + "&platformid=" + platform + "&format=json",
"Downloading catalog..."
);
await localforage.setItem("catalog", result.catalog);
await localforage.setItem("version", version);
await localforage.setItem("language", language);
await localforage.setItem("platform", platform);
// TODO: use book.versions API to update any downloaded books.
return result.catalog;
}
示例3:
).then(data => {
file.data = data;
// TODO: notify UI book has been updated
files[book.file] = file;
return localforage.setItem(book.file, file);
});