0

我是 web 和 chrome 扩展开发的新手,我正在尝试使用 localForage API 来存储我的 chrome 扩展的数据 - 目前每次切换到新标签时我都会丢失所有内容,但我希望数据一直保留到用户明确清除一切都结束了(所以即使在多个会话等)

我决定试一试 localForage api(因为它应该像 localStorage 但更简单)并且觉得我错过了一些重要的东西——我可以毫无问题地 setItems/getItems 但它实际上并没有保存任何数据。

在切换标签(以及多个浏览会话)时,我究竟如何确保我的数据保持不变?

使用 localForage.getItem/setItem- 这似乎在使用数据方面有效,但在我切换选项卡时没有做任何事情来保存它

citeUrl(values, function(citation) 
    {
      count++;
      var string = citation[0];
      localforage.setItem(string, [citation[0],citation[1]], function(err, value) 
      {// Do other things once the value has been saved.
        console.log(value[0] + " " + value[1]);
      });
      /*var result = document.getElementById('cite[]');
      result.style.visibility = 'visible'; 
      result.style.display = 'block';
      result.innerHTML = citation[0];
      renderStatus(citation[1]);*/

      for(i = 0; i < count ; i++)
      {
        var newCitation = document.createElement('div');
        localforage.getItem(citation[i], function(err, value)
          {
            newCitation.innerHTML = value[1] + "<br>" + value[0];
          }
        );
        newCitation.style.backgroundColor = "white";
        newCitation.style.marginBottom = "7px";
        newCitation.style.padding = "6px";
        newCitation.style.boxShadow= "0 2px 6px rgba(0,0,0,0.4)";
        newCitation.style.borderRadius = "3px";
        document.getElementById("answered[]").appendChild(newCitation);
      }
    }
4

1 回答 1

0

localForage是建立在localStorage和朋友之上的。重要的部分是它绑定到您访问它的来源。

从内容脚本中使用它会使用网站的源,例如,使用您的扩展程序http://example.com/test将数据绑定到http://example.com/源,使用您的扩展程序http://example2.com/test会将数据绑定到附加到源的完全独立的存储http://example2.com/。更重要的是,数据与页面自己的存储共享(并且可能会干扰)。

因此,使用localStorage(以及扩展名localForage)不允许在内容脚本中产生预期的结果(尽管如果您尝试操纵页面自己的存储,它可能仍然有用)。

因此,有两种方法可以正确地做到这一点:

  1. 如果您必须使用它,请localForage在后台脚本中使用。在这种情况下,数据绑定到 origin chrome-extension://yourextensionidhere。但是,这不能从内容脚本访问 - 您需要使用Messaging传递数据,这很烦人。

  2. 更好的、特定于扩展的方法:使用本机chrome.storageAPI,它在扩展的所有部分之间共享。此 API 专门用于解决需要传递数据的限制等问题。

  3. (赢得大量互联网积分的方法)使用API为 localForage 编写自定义驱动程序。chrome.storage这将允许人们轻松地在 Chrome 扩展程序和应用程序中使用它。这显然是已经尝试过的事情。

这个问题可能有用。

于 2016-01-26T10:40:10.713 回答