在已编译的咖啡脚本中,我们的代码自动包装在如下模块中:
(function() {
//Code goes here
}).call(this);
但我想将我的代码包装在一个模块中,如:
(function($, _) {
//Code goes here
})(jQuery, _);
和
var myModule = (function($, _) {
//Code goes here
})(jQuery, _);
所以我必须在咖啡脚本中使用它