MVC.Net:添加第三方類庫的bundles引用

來源:互聯網
上載者:User

標籤:style   c   http   a   get   使用   

以jQuery Mobile為例。當我們用nuget添加jQuery Mobile的package後,需要在項目中引用jQuery Mobile。傳統的做法是在html頁面上添加
<link href="/Content/jquery.mobile-1.4.2.css" rel="stylesheet"/>
<script src="/Scripts/jquery.mobile-1.4.2.js"></script>

不過在MVC.Net裡我們可以用Scripts.Render和Styles.Render來實現。
1.  在_layout.cshtml頁面或是其它特定頁面上,添加
@Scripts.Render("~/bundles/jquery.mobile")
@Styles.Render("~/Content/css")
2.  編輯BundleConfig類,添加

bundles.Add(new ScriptBundle("~/bundles/jquery.mobile").Include("~/Scripts/jquery.mobile-{version}.js"));

bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/jquery.mobile-1.4.2.css"));

 

儲存並運行程式,你就能開始使用jQuery Mobile。這中做法比傳統做法的優點在於調用的第三方類庫的版本能夠統一在BundleConfig類中管理,從而減少升級版本帶來的影響。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.