我正在构建Chrome扩展程序并在主页面中(例如index.html) 我正在下载像这样保存的数据
Json对象:
return {
Companies: dict, //dict is a HashMap
totalCompanies: companies, //int
totalEmployees: numEmployees, //int
};
这个json的大小可能相当大(因为在为每个公司保存的一组员工的hashmap中),我如何在像Employees.html这样的不同页面中使用这个json?
我的意思是index.html是下载它的人,我想在Employees.html上使用它。