Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
想想当你有很多视图、模型、集合和一个路由器并且你使用Require.js
Require.js
有没有更好的方法use strict通过将其指定为配置或设置而不是这样做来在整个代码库中强制执行?
use strict
您可以在函数内部或外部声明“使用严格”,但无论哪种方式,它都只适用于您声明它的文件;没有“全局使用严格”。
就我个人而言,我只是配置我的 IDE (Eclipse) 以在我的新文件模板中为我写出“使用严格”,但如果你不喜欢这样做,你可以总是(正如 WiredPrairie 建议的那样)在某种形式的“编译”步骤。