我的index.js
文件:
res.render('index', {data:{'hello':'world'}});
我的玉文件:
p #{data}
script(src="/javascripts/app.js")
这将打印值 json 对象。
现在在我的app.js
文件上console.log(data);
给出一个错误,说数据未定义。
如何访问从我的 javascript 文件中的 index.js 文件传递的数据。
我的index.js
文件:
res.render('index', {data:{'hello':'world'}});
我的玉文件:
p #{data}
script(src="/javascripts/app.js")
这将打印值 json 对象。
现在在我的app.js
文件上console.log(data);
给出一个错误,说数据未定义。
如何访问从我的 javascript 文件中的 index.js 文件传递的数据。