我正在使用不是 AMD 模块的外部 js 库,所以我使用 shim。让我们在这个例子中使用 bootstrap.js。bootstrap.js 需要 jQuery
requirejs.config({
paths : {
jquery : "lib/jquery",
bootstrap : "lib/bootstrap",
},
shim : {
"bootstrap" : [ "jquery" ]
}
});
我还需要require-jquery。这意味着我将有两个 jQuery 文件。一个标准和require-jquery。
如果我这样做
paths : {
jquery : "jquery-require"
bootstrap : "lib/bootstrap",
},
我会收到一个 jQuery 问题 Uncaught TypeError: Cannot read property 'fn' of undefined
你能帮我弄清楚如何使用它吗?