有时Requirejs会遇到加载js超时问题 除了排查js脚本问题,网络问题以外的一个解决方法是加大Require的等待时间waitSeconds,或者直接设置为0,这个参数的意义是:The number of seconds to wait before giving up on loading a script. Setting it to 0 disables the timeout. The default is 7 seconds. 引用别的帖子: Load timeout for m…
https://addyosmani.com/writing-modular-js/ 一些术语: 模块:可以理解为一个js文件,就像你以前需要import的那个文件一样:module不一定非要是一个外部文件,你可以动态创建一个module. loaded into global context,module中的变量或者函数都是封装起来的,不会被暴露到 global,只有export出来的才会暴露: 你不能使用<script>来直接引用,只能通过systemjs来加载: 每个模块只有一个实例si…