我似乎无法解决为什么在重新加载页面时它似乎没有保存(即使它似乎将对象保存到存储中。
以下是相关代码:
options.js
function saveSettings(){
var settings = {
"blockComments": document.querySelector("input[name='BlockComments']:checked"),
"visualDisplay": document.getElementById("visualDisplay").options[document.getElementById("visualDisplay").selectedIndex],
"shortcut": document.querySelectorAll("[data-shortcut-key] option:checked")
};
// Store options object
chrome.storage.sync.set({"data": settings}, function() {
// Update status to let user know options were saved.
var status = document.getElementById('status');
status.textContent = 'Options saved.';
setTimeout(function() {
status.textContent = '';
}, 2000);
});
}
// This is called on DOMContentReady and is triggered
function restoreSettings(){
chrome.storage.sync.get("data", function(items) {
console.log(items.data); // Returns empty object(s)
});
}
console.log显示的内容:
不确定他们为什么要空着。有什么帮助吗?
答案 0 :(得分:1)
您正在尝试保存DOM节点(不是JSON可序列化的)。
提取您需要的属性并保存它们,例如
// Returns true or false
document.querySelector("input[name='BlockComments']).checked
而不是
// Returns an element or nothing depending on its state
document.querySelector("input[name='BlockComments']:checked")