requirejs:有没有办法设置几个地方搜索1资源

时间:2013-02-11 09:16:20

标签: javascript jquery requirejs amd

我需要为.net MVC中的视图解析算法实现一些非常常见的东西,但需要使用requirejs - 如果文件夹中没有该资源,则在共享文件夹中搜索它。

你知道requirejs是否可行吗?

1 个答案:

答案 0 :(得分:1)

Certianly,您必须包含直接来自requirejs手册的pathconfig回退。

http://requirejs.org/docs/api.html#pathsfallbacks

requirejs.config({
//To get timely, correct error triggers in IE, force a define/shim exports check.
enforceDefine: true,
paths: {
    jquery: [
        'http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min',
        //If the CDN location fails, load from this location
        'lib/jquery'
    ]
}
});

//Later
require(['jquery'], function ($) {
});