0

jQueryMobile、Backbone、および RequireJs を使用してプロジェクトをセットアップしようとしています。関連するコード スニペットは次のとおりです。

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

実はここから来ています。コードを実行すると、「routers/mobileRouter」で 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