我需要在 .net MVC 中实现一些非常常见的视图解析算法,但需要使用 requirejs - 如果文件夹中不存在资源,请在共享文件夹中搜索它。
你知道requirejs是否可行?
我需要在 .net MVC 中实现一些非常常见的视图解析算法,但需要使用 requirejs - 如果文件夹中不存在资源,请在共享文件夹中搜索它。
你知道requirejs是否可行?
当然,您必须包含直接取自 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 ($) {
});