我试图了解 jQuery 是如何设置自己的。
一开始 jQuery 会自动调用一个函数,该函数会导出一个模块。
设置如何工作?
这里有一些更详细的子问题可能会回答更一般的问题:
- 递归调用
function(w)
at 有什么用module.exports
? noGlobal
变量有什么用?factory
实际设置在哪里,它的类型是什么?- 为什么
factory
参数可以用一个参数调用,也可以用两个参数调用? global
论证应该包含什么?(我希望有像 c++ 这样的类型......)
(function( global, factory ) {
if ( typeof module === "object" && typeof module.exports === "object" ) {
// For CommonJS and CommonJS-like environments where a proper `window`
// is present, execute the factory and get jQuery.
// For environments that do not have a `window` with a `document`
// (such as Node.js), expose a factory as module.exports.
// This accentuates the need for the creation of a real `window`.
// e.g. var jQuery = require("jquery")(window);
// See ticket #14549 for more info.
module.exports = global.document ?
factory( global, true ) :
function( w ) {
if ( !w.document ) {
throw new Error( "jQuery requires a window with a document" );
}
return factory( w );
};
} else {
factory( global );
}
// Pass this if window is not defined yet
}(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {