js: chrome 存储获取内容
Js: chrome storage get content
我想提取 chrome 存储中 dataflowid 的内容,但我在下面的照片上得到了输出
var a = chrome.storage.sync.get(['dataflowid']);
console.log(a)
您需要根据 docs:
在回调函数(get()
的第二个参数)中记录值
chrome.storage.sync.get(['dataflowid'], function(result) {
console.log('Value currently is ' + result.dataflowid);
});
我想提取 chrome 存储中 dataflowid 的内容,但我在下面的照片上得到了输出
var a = chrome.storage.sync.get(['dataflowid']);
console.log(a)
您需要根据 docs:
在回调函数(get()
的第二个参数)中记录值
chrome.storage.sync.get(['dataflowid'], function(result) {
console.log('Value currently is ' + result.dataflowid);
});