chrome.storage.sync.get与外层对象同步,但内部对象不同步?

时间:2015-06-12 22:00:05

标签: javascript google-chrome asynchronous sync

我正在尝试使用chrome.storage.sync.get取回设置。我不明白的是,当我调用console.log(settings)时,它会返回正确的值。但是,如果我调用console.log(settings.speeds),它将返回旧值。我认为这与chrome.storage.sync.get的异步性质有关。有人可以解释一下这里发生了什么吗?如果有解决方案的话。我尝试使用callback,但没有帮助。我想一个解决方案是只使用一个级别,但这不是我想要的。

感谢大家的帮助。

var settings = {
    speeds: {
        speedInput1: 1.0,  // after get, new value should be 11.23
        speedInput2: 2.0   // after get, new value should be 4.50
    },
    shortcuts: {
        shortCut1: '1',
        shortCut2: '2'
    }
};


chrome.storage.sync.get(settings, function(result) {
    // Retrieve speed settings
    for (var key in settings.speeds) {
        if (key in result.speeds) {
            settings.speeds[key] = result.speeds[key];
        }
    };

    // Retrieve shortcut settings
    for (var key in settings.shortcuts) {
        if (key in result.shortcuts) {
            settings.shortcuts[key] = result.shortcuts[key]
        }
    };
});

console.log(settings); // correct updated values
console.log(settings.speeds); // old values

1 个答案:

答案 0 :(得分:1)

我为任何感兴趣的人找到了解决方法。我用函数包装了get调用并调用了该函数并解决了这个问题。至于为什么这解决了这个问题...我不知道。以下是一个例子。

function getChromeStorage() {
    chrome.storage.sync.get(settings, function(storage) {
    // get stored values back;
}
getChromeStorage(); // calling it as a function solves the asynchronous issue