0

我正在尝试包含JQuery在使用 构建的 Web 应用程序中mavenRequireJS用于定义Javascript模块。

我遵循了此处RequireJS的文档,其中解释了如何使用with 。我还有一个构建。JQueryRequireJSmaven

这是我所做的:

我的 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
})
4

1 回答 1

0

我发现的唯一解决方案(这是一种解决方法)是使用“enforceDefine”值:

requirejs.config({
    enforceDefine : false,

    map : {
        'libs/jquery' : {
            'jquery' : "webjars/jquery/${jquery.version}/jquery"
        },

        '*': { 
            'jquery' : 'libs/jquery', 
        },
    },

    baseUrl : './',

    deps : [ 'MyMainPanel' ],
});

我不知道为什么它有效,但它有效。我会一直这样,直到找到更好的解决方案。

于 2015-03-12T13:15:15.700 回答