比如说我定义我个模块editor,只有在代码中引用到editor时候,才会从服务器加载,如果没有调用到这段代码,则永远不会下载,有能做到的么。
例如:
if(condition){ require('editor’, function(editor){ editor.doSomething() }) }else{ //永远不加载 }
比如说我定义我个模块editor,只有在代码中引用到editor时候,才会从服务器加载,如果没有调用到这段代码,则永远不会下载,有能做到的么。
例如:
if(condition){ require('editor’, function(editor){ editor.doSomething() }) }else{ //永远不加载 }