我按照文档将常量放入 lib/constants.js 文件中。
lib/constants.js
问题 :如何在客户端的 html 和 js 文件中访问这些常量?
您将需要使它们成为全局变量,以便其他文件看到它们。
/lib/constants.js
THE_ANSWER = 42; // note the lack of var
/client/some-other-file.js
console.log(THE_ANSWER);
/lib/constants.coffee
@THE_ANSWER = 42
/client/some-other-file.coffee
console.log THE_ANSWER