0

localstorage からのデータを必要とする拡張機能があります。アルゴリズム: データが見つからない (または空である) 場合は、alert(); そして戻る;

var storage = chrome.storage.local;
storage.get('data', function(items) 
{ 
    if (!items.data.apiKey) { alert('Api key not set!'); return;} // not working
    //nextstuff that is not working if there is no items.data.apiKey
}

このコードは Windows でうまく機能します。Mac OS では警告は表示されず、データが返されない場合はすぐに返されます。

4

1 に答える 1