ASP.NET MVC Bundles 用法和說明(打包javascript和css)_自學過程

來源:互聯網
上載者:User

在網頁中,我們經常需要引用大量的javascript和css檔案,在加上許多javascript庫都包含debug版和經過壓縮的release版(比如jquery),不僅麻煩還很容易引起混亂,所以ASP.NET MVC4引入了Bundles特性,使得我們可以方便的管理javascript和css檔案。

原來,我們引用css和javascript檔案我們需要這樣一個一個的引用:

複製代碼 代碼如下:

<scriptsrc="~/Scripts/jquery-1.8.2.js"></script>
<scriptsrc="~/Scripts/jquery-ui-1.8.24.js"></script>
<scriptsrc="~/Scripts/jquery.validate.js"></script>
<linkhref="~/Content/Site.css"rel="stylesheet"/>

當需要引用檔案的數量較少時還好,但一旦每個頁面都需要引用較多檔案時,會造成極大的不便,當我們想更換某個引用檔案時,將會浪費大量的時間。發布時,還要將一些庫替換成release版,比如上面的jquery-1.8.2.js所對應的jquery-1.8.2.min.js

還好,現在我們可以使用Bundles特性:

複製代碼 代碼如下:

public class BundleConfig
{
    public static void RegisterBundles(BundleCollection bundles)
    {
        bundles.Add(new ScriptBundle("~/bundles/jquery")
        .Include("~/Scripts/jquery-{version}.js"));
        bundles.Add(new ScriptBundle("~/bundles/jqueryui")
        .Include("~/Scripts/jquery-ui-{version}.js"));
        bundles.Add(new ScriptBundle("~/bundles/jqueryval")
        .Include("~/Scripts/jquery.unobtrusive*"
        ,"~/Scripts/jquery.validate*"));
        bundles.Add(new StyleBundle("~/Content/css")
        .Include("~/Content/site.css"));
    }
}

接著在Global.asax檔案的Application_Start方法中調用BundleConfig.RegisterBundles方法:

複製代碼 代碼如下:

protected void Application_Start()
{
    AreaRegistration.RegisterAllAreas();
    WebApiConfig.Register(GlobalConfiguration.Configuration);
    FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
    RouteConfig.RegisterRoutes(RouteTable.Routes);
    BundleConfig.RegisterBundles(BundleTable.Bundles);
}

在上面我們可以看到我們按照功能的不同,將不同的檔案分到了相應的Bundle(Bundle就是包的意思),其中建構函式中的string參數是Bundle的名稱,Include函數是將參數相應的檔案包含成一個Bundle。可以發現,對於jquery庫我們使用了這樣的名稱~/Scripts/jquery-{version}.js,其中{version}部分代表版本號碼的意思,MVC將會替我們在Scripts檔案中尋找對應的"jquery-版本號碼.js"檔案,並且在非debug模式下,MVC則會使用“jquery-版本號碼.min.js"檔案。

我們還看到我們使用了這樣的名稱~/Scripts/jquery.validate*的名稱,*是一個萬用字元,這就意味著Scripts檔案夾下的所有首碼為jquery.validate的檔案都將包含在同一個Bundle中。

最後,我們可以View上使用Bundle來代替原來引用的方式:

複製代碼 代碼如下:

@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/jquery")

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.