从CDN与Require.js加载引导(Loading Bootstrap from CDN wit

2019-07-03 23:50发布

引导分布在CDN中

http://www.bootstrapcdn.com/

  • 是否有可能加载引导与Require.JS 2.X(匀或原生AMD)?

  • 它是如何可能从CDN URL与Require.js加载引导,或任何缩小的JS,直接

Answer 1:

requirejs.config({
    appDir: ".",
    baseUrl: "js",
    paths: { 
        /* Load jquery from google cdn. On fail, load local file. */
        'jquery': ['//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min', 'libs/jquery-min'],
        /* Load bootstrap from cdn. On fail, load local file. */
        'bootstrap': ['//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.', 'libs/bootstrap-min']
    },
    shim: {
        /* Set bootstrap dependencies (just jQuery) */
        'bootstrap' : ['jquery']
    }
});

require(['jquery', 'bootstrap'], function($) {
    console.log("Loaded :)");    
    return {};
});


文章来源: Loading Bootstrap from CDN with Require.js