简体   繁体   中英

Js: chrome storage get content

I want to extract the content of dataflowid in the chrome storage but i get the output on the photo down bellow

var a = chrome.storage.sync.get(['dataflowid']);
console.log(a)

在此处输入图像描述

You need to log the value in the callback function (second parameter to get() ) per thedocs :

chrome.storage.sync.get(['dataflowid'], function(result) {
  console.log('Value currently is ' + result.dataflowid);
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM