我正在尝试包含JQuery
在使用 构建的 Web 应用程序中maven
,RequireJS
用于定义Javascript
模块。
我遵循了此处RequireJS
的文档,其中解释了如何使用with 。我还有一个构建。JQuery
RequireJS
maven
这是我所做的:
我的 main.js,由我的 data-mainRequireJS
调用HTML
define(function() {
// Configuration of RequireJS
requirejs.config({
// No module can start with require. This can potentially allow easier definition of some elements
enforceDefine : true,
map : {
'*': {
'jquery': 'libs/jquery',
},
// To make jquery work with requireJS: see http://requirejs.org/docs/jquery.html
// 'jquery' wants the real jQuery module
// though. If this line was not here, there would
// be an unresolvable cyclic dependency.
'libs/jquery': { 'jquery': 'jquery' },
},
// The base URL is just the top-level directory where the files are stored
baseUrl : './',
// Kick-start the application by loading these files
deps : [ 'MyMainPanel' ],
});
});
我定义了一个“自定义”JQuery(如 RequireJS 文档中所示),位于 /libs/jquery.js
define(['jquery'], function (jq) {
return jq.noConflict( true );
});
在我的maven
pom.xml
:
...
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>${jquery.version}</version>
</dependency>
...
在使用 jquery 的模块实例化时,我收到以下错误:
GET http://localhost:8080/jquery.js 404 (Not Found)
require.js:166 Uncaught Error: Script error for: jquery
http://requirejs.org/docs/errors.html#scripterror
使用 JQuery 的模块如下:
define(['ractive',
'jquery',
function(Ractive,
$,
){
var Panel = Ractive.extend({
el:"mainPanel",
oninit: function(){
$.ajax({url: "/myURL"}).done(function(types){
// Work
})
}
})
return Panel
})