我正在创建我的第一个PWA。过去,我创建了一个Chrome扩展程序,并使用chrome.storage.sync API将数据存储在云端(使用Google Drive TMK存储)。
chrome.storage.sync.set({ [key]: val }, function() {
if (chrome.runtime.lastError) {
reject(chrome.runtime.lastError);
} else {
resolve();
}
});
在创建PWA时是否可以使用此API?此API在此处记录: https://developer.chrome.com/extensions/storage
也许可以使用Google Drive REST API来存储键/值数据,但我不知道该怎么做: https://developers.google.com/drive/api/v3/appdata