我正在使用requirejs + jquery,我想知道是否有一种聪明的方法可以使jQuery插件与require一起很好地工作。
例如,我正在使用jQuery-cookie。如果我理解正确,我可以创建一个名为jquery-cookie.js的文件,然后在里面执行
define(["jquery"], // Require jquery
function($){
// Put here the plugin code.
// No need to return anything as we are augmenting the jQuery object
});
requirejs.config( {
"shim": {
"jquery-cookie" : ["jquery"]
}
} );
我想知道我是否可以做像jQuery这样的事情:
if ( typeof define === "function" && define.amd && define.amd.jQuery ) {
define( "jquery", [], function () { return jQuery; } );
}
或者这是使jQuery插件与requirejs或任何amd兼容的唯一方法