如何将JSON响应从一个脚本传输到另一个脚本?

时间:2019-07-11 13:40:22

标签: javascript html json flask

我正在开发flask应用程序,我的想法是从用户那里获取输入,使用该特定输入查询API,重定向到第二个HTML并显示响应。我可以用一种HTML格式执行此操作,但我想知道是否可以采用JSON响应,将其存储在变量中,导出,导入到另一个脚本中并在第二个脚本中使用访问响应。

我尝试使用导出{my_data};但是我得到了“意外令牌”,也尝试了window.my_data,但它甚至没有将信息保存在getJSON请求之外。

$.getJSON(customURL1,function(data){
      console.log(data);
      var hi = data;
      console.log(hi);
      window.myVar = hi;
      console.log(window.myVar);
      //I can see in both cases the data is shown in the console  but it still fails to export
      export {hi}
      //Unexpected token


    });

  }
  console.log(window.myVar);
  //'undefined'

期待任何反馈!

0 个答案:

没有答案