- ASP.NET jQuery Cookbook(Second Edition)
- Sonal Aneel Allana
- 318字
- 2021-07-16 13:12:10
Using CDN to load jQuery in MVC
Because of the advantages of using CDN in web applications, bundling also supports the loading of files directly from CDN. This recipe will explain how a MVC project can be configured to use CDN.
Getting ready
This recipe is a continuation of the previous recipe, Bundling jQuery in ASP.NET MVC. So, follow all the steps described in the previous recipe.
How to do it…
Following are the steps to load jQuery in MVC:
- In the
BundleConfig
module/class, modify theRegisterBundles
method in order to set theUseCdn
property totrue
, as shown in the code snippet in step 2. - Declare the required CDN path, and add a
ScriptBundle
with two parameters: the virtual path of the bundle and the CDN path, as follows:For VB, the code is as follows:
Public Module BundleConfig Public Sub RegisterBundles(ByVal bundles As BundleCollection) bundles.UseCdn = True Dim cdnPath As String = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.min.js" bundles.Add(New ScriptBundle("~/Scripts/jquery", cdnPath).Include("~/Scripts/jquery-{version}.js")) End Sub End Module
For C#, the code is as follows:
public class BundleConfig { public static void RegisterBundles(BundleCollection bundles) { bundles.UseCdn = true; string cdnPath = "http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.min.js"; bundles.Add(new ScriptBundle("~/Scripts/jquery", cdnPath).Include("~/Scripts/jquery-{version}.js")); } }
How it works…
Following are the steps to load jQuery in MVC using CDN:
- By setting the
UseCdn
property, serving of bundled scripts from the CDN is enabled. - In the development mode, the application retrieves files from the local Scripts folder. In the release mode, the CDN path is used to serve the bundled scripts.
- However, there is a possibility that the CDN is down. Hence, a fallback mechanism is required so that the scripts are served locally in such a scenario. This can be done by adding the following
<script>
block in the required view:@Scripts.Render("~/Scripts/jquery") <script type="text/javascript"> if (typeof jQuery == 'undefined') { var e = document.createElement('script'); e.src = '@Url.Content("~/Scripts/jquery-2.4.1.js")'; e.type = 'text/javascript'; document.getElementsByTagName("head")[0].appendChild(e); } </script>
See also
The Hello World in ASP.NET MVC using jQuery recipe
推薦閱讀
- Spring 5.0 Microservices(Second Edition)
- 深入淺出Electron:原理、工程與實踐
- GitLab Repository Management
- JS全書:JavaScript Web前端開發指南
- Learning DHTMLX Suite UI
- Python3.5從零開始學
- Visual Basic 6.0程序設計實驗教程
- Visual Basic程序設計習題與上機實踐
- Mastering Docker
- Drupal 8 Development Cookbook(Second Edition)
- 區塊鏈:技術與場景
- Python編程零基礎入門
- Web前端開發實戰教程(HTML5+CSS3+JavaScript)(微課版)
- 測試架構師修煉之道:從測試工程師到測試架構師(第2版)
- JSP項目開發情境教程