无法获得捆绑/缩小在VS2012中工作

我正在使用Visual Studio 2012 RC

我创建了ASP.NET 4 Web应用程序/ Internet应用程序

在视图中我有这样的代码:

<script type="text/javascript">
  $(function () {
    alert("Test");
  });
</script>

尽管长时间搜索,我无法使捆绑/缩小工作。 在_Layout.cshtml我有以下。 我没有做别的。 有人能告诉我我需要做什么吗? 非常感谢。

  @Styles.Render("~/Content/themes/base/css", "~/Content/css")
  @Scripts.Render("~/bundles/modernizr")

  @*This line Does Not Work*@
  @Scripts.Render("~/Scripts/js")

  @*This Line Does Work*@ 
  <script type="text/javascript" src="~/Scripts/jquery-1.7.2.js"></script>

首先创建你的脚本包,并添加你想要的任何脚本。

public static void RegisterBundles(BundleCollection bundles)
{
    bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
        "~/Scripts/jquery-1.*",
        "~/Scripts/jquery-ui-1.8.20.js"));
}

然后在你的页面中使用@ Scripts.Render,像这样:

@Scripts.Render("~/bundles/jquery");

请注意,我在上面的ScriptBundle中指定的路径与我在Scripts.Render中使用的路径相同。

按照这篇文章,http://www.asp.net/mvc/tutorials/mvc-4/bundling-and-minification。

链接地址: http://www.djcxy.com/p/60337.html

上一篇: Unable to get Bundling/Minification to work in VS2012

下一篇: Baffled by what to do to fix these errors (iOS)...any suggestions?