我在BundleConfig中注册了捆绑包,如下所示:
bundles.Add(new ScriptBundle("~/bundles/jqueryupload").Include(
"~/Scripts/jquery.upload-1.0.2.min.js"));
并希望在视图上呈现它:
@Scripts.Render("~/bundles/jqueryupload")
但我的sript未包含在页面中。 有什么想法吗? 谢谢!
答案 0 :(得分:22)
不要在捆绑包中包含缩小版本:
ScriptBundle("~/bundles/jqueryupload").Include("~/Scripts/jquery.upload-1.0.2.js"))
捆绑包的重点在于它们将负责缩小和组合您的静态资源。您不应在捆绑包中注册.min.js
。