我正在處理ASP.NET MVC4。客戶需要加載其他域名(如CDN)的所有javascript和css。我已經使用了System.Web.Optimization。CDN路徑不工作在js捆綁在MVC
下面是代碼。
var bundle = new ScriptBundle("~/bundles/scripts/");
bundle.Orderer = new AsIsBundleOrderer();
bundle.EnableFileExtensionReplacements = false;
bundle.CdnPath = "http://js.cusomdomainname.com";
bundle.Include("~/Scripts/jquery-1.7.1.min.js",
"~/Scripts/jquery.unobtrusive-ajax.min.js",
"~/Scripts/jquery.validate.min.js",
"~/Scripts/jquery.validate.unobtrusive.min.js");
BundleTable.Bundles.UseCdn = true;
BundleTable.EnableOptimizations = true;
BundleTable.Bundles.Add(bundle);
BundleTable.Bundles.IgnoreList.Clear();
上查看
@Scripts.Render("~/bundles/scripts/")
,但它不是從另一個域渲染。
可能是什麼問題?
這裏是類似question..answered 問題http://stackoverflow.com/questions/15434692/javascript-error-in-asp -net-mvc-4-bundling –