我无法让jQuery与requirejs一起使用。
我在main.js中有以下代码:
requirejs.config({
paths: {
'jQuery': '../bower_components/jQuery/dist/jquery.min'
}
});
require(['jQuery'], function(jq) {
console.log(jq); // gives undefined
jq( document.body ).click(function() { // Gives Uncaught TypeError: jq is not a function
console.log("jqueryworks");
});
});
jq以undefined的形式返回,而jq(document.body)给出的jq不是函数。
任何人都可以指出错误以及应该如何配置。