标签: javascript html
我在.html文件中有一个对象(响应)。我想在与响应相同的目录中的Global.js文件中设置一个对象(response1)。
所以我的目录看起来像:
/res/Global.js - >这个有响应1
/res/Response.html - >这个在标签内有响应
Global.js看起来像
var response1 = null; export default { response1; }
我想像Global.response1 = response;
Global.response1 = response;