gpt4 book ai didi

twitter-bootstrap - MVC 4 Styles.Render & Scripts.Render 说明

转载 作者:行者123 更新时间:2023-12-02 03:34:58 25 4
gpt4 key购买 nike

我将 ASP.NET MVC 4 与 Bootstrap 一起使用,我注意到我的项目与许多关于“使用 Bootstrap 构建网站”的文章和教程有点不同,他们一直提到使用 minified Javascript 和 CSS 文件(bootstrap.min.css、bootstrap.min.js),尽管文件在目录中,但我只有没有 min 的文件。

我读到了这些文件,但我不明白它的意义,也许有人可以阐明它们的用途,以及我是否需要在我的包配置中添加对它们的引用?

我的代码是这样的:

_Layout.cshtml:

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")

</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>

<a href="@Url.Action("Index", "Home")" class="navbar-brand">
<span class="glyphicon glyphicon-filter"></span> SelectorIT - OnLine
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>
@Html.Partial("_LoginPartial")
</div>
</div>
</div>
<div class="container body-content">
@RenderBody()
<hr />
<footer>
<p>&copy; @DateTime.Now.Year - My ASP.NET Application</p>
</footer>
</div>

@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>


还有我的 BundleConfig.cs:

public class BundleConfig
{
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));

bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.validate*"));

// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));

bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js"));

bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));

// Set EnableOptimizations to false for debugging. For more information,
// visit http://go.microsoft.com/fwlink/?LinkId=301862
BundleTable.EnableOptimizations = true;
}
}

我有两个问题:

  1. 当我没有引用 bootstrap.min.css、bootstrap.min.js 时我错过了什么?
  2. 我是否应该在以下位置添加对这些文件的引用:

    bundles.Add(new StyleBundle("~/Content/css").Include()

最佳答案

min 文件删除所有不必要的字符以使文件更小。这减少了加载时间。 Source .

如果您正在构建一个小型个人项目,性能可能不是最重要的。如果您是为其他人或组织构建站点,我建议您使用最小版本。

关于twitter-bootstrap - MVC 4 Styles.Render & Scripts.Render 说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24105803/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com