gpt4 book ai didi

firefox - 无法从 browser.storage.local.get 中提取数据

转载 作者:行者123 更新时间:2023-12-05 07:24:16 25 4
gpt4 key购买 nike

尝试为 firefox 插件/扩展版本 64.0 实现选项页面。我正在使用 browser.storage.local.se t 存储数据。但是当我使用 browser.storage.local.get拉取数据,结果为<unavailable>在控制台日志上。

以下是我在 options.js 中运行的函数文件(我在表单字段 njnj 上输入了 gateway 并点击了提交按钮)

function saveOptions(e) {
e.preventDefault();
console.log("you are here")
console.log(document.querySelector("#gateway").value)
browser.storage.local.set({
"gateway": document.querySelector("#gateway").value });
console.log(browser.storage.local.get("gateway"))
}

document.querySelector("form").addEventListener("submit", saveOptions);

我在控制台日志中的实际输出如下:

you are here                                         options.js:4:3
njnj options.js:5:3
<unavailable> options.js:8:3

最佳答案

好的,所以我确实部分弄清楚了为什么上面的代码不起作用。问题是 browser.storage.local.get() 在 javascript 中返回一个“promise”(我实际上还不知道它是什么意思)。所以你必须有一个代码,它实际上会从这个“ promise ”中检索答案/保存的值。我将举例说明如何检索值:

// first save a key value pair into storage
browser.storage.local.set({"key": 'value'})

// to retrieve this value, first declare a new variable
var savedvalue = "zero"

// retrieve the 'promise' of key value pair, then run the associated function to get
//the savedvalue and set it equal to previously declared variable.
browser.storage.local.get(['key'], function(result) {savedvalue = result.key});

// now, when you call savedvalue (even outside the function above), it will return 'value'
console.log(savedvalue)

output>> value

关于firefox - 无法从 browser.storage.local.get 中提取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55542155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com