requireJs order plugin: can it exist in a different path than the require.js basePath?

谁说胖子不能爱 提交于 2019-12-06 18:43:07

问题


when using the order plugin require.js looks for it in the given basePath/order.js

example:

require(
        {
            baseUrl: '/public/js/'
        },
        [
            'require',
            'order!http://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.1.7/underscore-min.js',
            'order!http://cdnjs.cloudflare.com/ajax/libs/backbone.js/0.5.3/backbone-min.js',
            'order!http://cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js'
        ], 
        function (require) {
            require(['application'], function (app) {
                app.run();
            });
        }
    );

it looks for the order plugin in http://url.com/public/js/order.js could I somehow store it not in the root of my javascript folder?


回答1:


You can place your plugins anywhere you like and point to their paths when configuring RequireJS:

require({
    baseUrl: "/public/js/",
    paths: {
        order: "requirejs/plugins/order"
    },
    ...


来源:https://stackoverflow.com/questions/7363379/requirejs-order-plugin-can-it-exist-in-a-different-path-than-the-require-js-bas

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!