0

我正在尝试使用 jQueryMobile、Backbone 和 RequireJs 设置一个项目。这是相关的代码片段:

require([ "jquery", "backbone", "routers/mobileRouter" ], 
    function( $, Backbone, Mobile ) {
        /* do something */
    }
) ;

它实际上是从这里来的。运行代码会在“路由器/移动路由器”上给出 404

GET http://localhost:9000/scripts/routers/mobileRouter.js 404 (Not Found) 

例如,如果我在我的项目中搜索“mobileRouter.js”,我会得到以下信息

./app/bower_components/jquery-mobile/demos/examples/backbone-require/js/routers/mobileRouter.js
./app/bower_components/jquery-mobile/dist/demos/examples/backbone-require/js/routers/mobileRouter.js

这些是演示/示例,那么我应该如何加载它,也许我需要安装其他包?任何有关此文档的链接当然也会对我有所帮助!

更新:这是所有的js代码

// Sets the require.js configuration for your application.
require.config( {

    // 3rd party script alias names (Easier to type "jquery" than "libs/jquery-1.8.3.min")
    paths: {
        // Core Libraries
        jquery:      '../bower_components/jquery/jquery',
        backbone:    '../bower_components/backbone/backbone',
        underscore:  '../bower_components/underscore/underscore',
        jquerymobile:'../bower_components/jquery-mobile/dist/jquery.mobile.min'

    },

    // Sets the configuration for your third party scripts that are not AMD compatible
    shim: {

        "backbone": {
            "deps": [ "underscore", "jquery" ],
            "exports": "Backbone"  //attaches "Backbone" to the window object
        },
        "jquery.mobile": ['jquery']
    } // end Shim Configuration
} );

// Includes File Dependencies
require([ "jquery", "backbone", "routers/mobileRouter" ], function( $, Backbone, Mobile )       {

    $( document ).on( "mobileinit",
        // Set up the "mobileinit" handler before requiring jQuery Mobile's module
        function() {
            // Prevents all anchor click handling including the addition of active button state and alternate link bluring.
            $.mobile.linkBindingEnabled = false;

            // Disabling this will prevent jQuery Mobile from handling hash changes
            $.mobile.hashListeningEnabled = false;
        }
    );

    require( [ "jquerymobile" ], function() {
        // Instantiates a new Backbone.js Mobile Router
        this.router = new Mobile();
    });
} );
4

1 回答 1

1

只需在路径中添加另一个键/值:

paths: {
    // Core Libraries
    jquery:      '../bower_components/jquery/jquery',
    backbone:    '../bower_components/backbone/backbone',
    underscore:  '../bower_components/underscore/underscore',
    jquerymobile:'../bower_components/jquery-mobile/dist/jquery.mobile.min',
    jquerymobilerouter: '../bower_components/jquery-mobile/demos/examples/backbone-require/js/routers/mobileRouter.js'
},

那么你可以像这样使用它:

require(["jquery", "backbone", "jquerymobilerouter"], function($, Backbone, MobileRouter) {
});
于 2013-08-19T16:03:38.950 回答