91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ASP.NET MVC Bundling and RequireJS

發布時間:2020-07-01 10:16:07 來源:網絡 閱讀:414 作者:lzwxx 欄目:編程語言

方式一 Bunding+RequireJS混用

先來看看一個老外的做法,他大體上是這樣做的:

Bundling部分

App_Start/BundleConfig.cs:

bundles.Add(new ScriptBundle("~/bundles/test").Include(                   "~/Scripts/jquery-{version}.js",                   "~/Scripts/q.js",                   "~/Scripts/globalize.js"));

RequireJS配置部分

在ASP.NET MVC項目中,我們一般是在_Layout母版頁中添加js引用

ASP.NET MVC Bundling and RequireJS

    <script src="~/Scripts/require.js"></script>
    @if (!HttpContext.Current.IsDebuggingEnabled)
    {        <script>
            requirejs.config({
                bundles: {                    '@Scripts.Url("~/bundles/test").ToString()': [                        'jquery',                        'globalize',                        'q']
                }
            });        </script>
    }

ASP.NET MVC Bundling and RequireJS

個人點評:很不優雅的實現方式,說好的模塊化呢?而且并沒有提供完整的應用程序解決方案。

老外原文地址:ASP.NET MVC Bundling and Minification with RequireJS

方式二 RequireJS.NET

但是隨后我就發現了一個插件RequireJS.NET

什么是RequireJS.NET?

RequireJS.NET讓每一個C#程序員可以來構建JavaScript代碼,不需要具備高級的js編程技能就可以來理解和使用。

在ASP.NET MVC中使用RequireJS的優勢:

  • 讓JavaScript代碼更加可復用

  • 可靠的對象和依賴關系管理

  • 適用于大型復雜的應用

  • 異步加載JavaScript文件

個人點評:安裝這個安裝那個,而且比較死板,我完全可以自己寫代碼實現它的功能,而且更加靈活,想怎么改怎么改。

RequireJS.NET的使用請參考:Getting started with RequireJS for ASP.NET MVC

我的實現方式

    接下來,我將隆重推出我的實現方式我的做法是:拋棄ASP.NET MVC自帶的Bundling功能,因為它太傻瓜、太粗暴了,但是可以將RequireJS and R.js 很友好的集成在ASP.NET MVC項目中來。雖然RequireJS看上去在單頁應用的場景下用起來非常方便,但是在應用程序場景下也是同樣適用的,只要你愿意接受它的這種方式。

使用技術: using RequireJS and R.js

目錄結構如下:

ASP.NET MVC Bundling and RequireJSASP.NET MVC Bundling and RequireJSASP.NET MVC Bundling and RequireJS

由于在ASP.NET MVC項目中,有模板頁_Layout.cshtml,那么我可以把一些公用調用的東西直接放到模板頁中,這里我通過Html的擴展方法進行了封裝

css的調用:

     <link rel="stylesheet" href="@Html.StylesPath("main.css")" />

js的調用:

    <script src="@Url.Content("~/themes/default/content/js/require.js")"></script>
    <script>   @Html.ViewSpecificRequireJS()</script>
        @RenderSection("scripts", required: false)

RequireJsHelpers:

ASP.NET MVC Bundling and RequireJS

using System.IO;using System.Text;using System.Web;using System.Web.Mvc;namespace Secom.Emx.WebApp
{    public static class RequireJsHelpers
    {        private static MvcHtmlString RequireJs(this HtmlHelper helper, string config, string module)
        {            var require = new StringBuilder();            string jsLocation = "/themes/default/content/release-js/";#if DEBUG
            jsLocation = "/themes/default/content/js/";#endif

            if (File.Exists(helper.ViewContext.HttpContext.Server.MapPath(Path.Combine(jsLocation, module + ".js"))))
            {
                require.AppendLine("require( [ \"" + jsLocation + config + "\" ], function() {");
                require.AppendLine("    require( [ \"" + module + "\",\"domReady!\"] ); ");
                require.AppendLine("});");
            }            return new MvcHtmlString(require.ToString());
        }        public static MvcHtmlString ViewSpecificRequireJS(this HtmlHelper helper)
        {            var areas = helper.ViewContext.RouteData.DataTokens["area"];            var action = helper.ViewContext.RouteData.Values["action"];            var controller = helper.ViewContext.RouteData.Values["controller"];            string url = areas == null? string.Format("views/{0}/{1}", controller, action): string.Format("views/areas/{2}/{0}/{1}", controller, action, areas);            return helper.RequireJs("config.js", url);
        }        public static string StylesPath(this HtmlHelper helper, string pathWithoutStyles)
        {#if (DEBUG)            var stylesPath = "~/themes/default/content/css/";#else
            var stylesPath =  "~/themes/default/content/release-css/";#endif
            return VirtualPathUtility.ToAbsolute(stylesPath + pathWithoutStyles);
        }
    }
}

ASP.NET MVC Bundling and RequireJS

再來看下我們的js主文件config.js

ASP.NET MVC Bundling and RequireJS

requirejs.config({
    baseUrl: '/themes/default/content/js',
    paths: {        "jquery": "jquery.min",        "jqueryValidate": "lib/jquery.validate.min",        "jqueryValidateUnobtrusive": "lib/jquery.validate.unobtrusive.min",        "bootstrap": "lib/bootstrap.min",        "moment": "lib/moment.min",        "domReady": "lib/domReady",
    },
    shim: {        'bootstrap': {
            deps: ['jquery'],
            exports: "jQuery.fn.popover"
        },        "jqueryValidate": ["jquery"],        "jqueryValidateUnobtrusive": ["jquery", "jqueryValidate"]
    }
});

ASP.NET MVC Bundling and RequireJS

 在開發環境,我們的css文件肯定不能壓縮合并,不然無法調試了,而生產環境肯定是需要壓縮和合并的,那么我想要開發的時候不合并,一發布到生產就自動合并

ASP.NET MVC Bundling and RequireJS

那么有兩種方式,一種呢是單獨寫一個批處理腳本,每次發布到生產的時候就運行一下,一種呢是直接在項目的生成事件中進行配置,如果是debug模式就不壓縮合并,如果是release模式則壓縮合并

ASP.NET MVC Bundling and RequireJS

if $(ConfigurationName) == Release node "$(ProjectDir)themes\default\content\build\r.js" -o "$(ProjectDir)themes\default\content\release-js\build-js.js"if $(ConfigurationName) == Release node "$(ProjectDir)themes\default\content\build\r.js" -o "$(ProjectDir)themes\default\content\release-css\build-css.js"

自動構建

批處理自動合并壓縮腳本build.bat:

ASP.NET MVC Bundling and RequireJS

@echo off
echo start build js
node.exe r.js -o build-js.js
echo end build js
echo start build css
node.exe r.js -o build-css.js
echo end build css
echo. & pause

ASP.NET MVC Bundling and RequireJS

因為我的js文件是和控制器中的view視圖界面一一對應的,那么我需要一個動態的js構建腳本,這里我使用強大的T4模板來實現,新建一個文本模板build-js.tt,如果你的VS沒有T4的智能提示,你需要安裝一個VS插件,打開VS——工具——擴展和更新:

ASP.NET MVC Bundling and RequireJS

T4模板代碼如下:

ASP.NET MVC Bundling and RequireJS

<#@ template debug="false" hostspecific="true" language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.IO" #>
<#@ import namespace="System.Configuration" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ output extension=".js" #>({
    appDir: '<#= relativeBaseUrl #>',
    baseUrl: './',
    mainConfigFile: '<#= relativeBaseUrl #>/config.js',
    dir: '../release-js',
    modules: [
    {
        name: "config",
        include: [            // These JS files will be on EVERY page in the main.js file            // So they should be the files we will almost always need everywhere
            "domReady",            "jquery",            "jqueryValidate",            "jqueryValidateUnobtrusive",            "bootstrap",            "moment"
            ]
    },    <# foreach(string path in System.IO.Directory.GetFiles(this.Host.ResolvePath(relativeBaseUrl+"/views"), "*.js", System.IO.SearchOption.AllDirectories)) { #>{
       name: '<#= GetRequireJSName(path) #>'
    },    <# } #>],
    onBuildRead: function (moduleName, path, contents) {        if (moduleName = "config") {            return contents.replace("/themes/default/content/js","/themes/default/content/release-js")
        }        return contents;
    },
})<#+ 
    public const string relativeBaseUrl = "../js";    public string GetRequireJSName(string path){    var relativePath = Path.GetFullPath(path).Replace(Path.GetFullPath(this.Host.ResolvePath("..\\js\\")), "");    return Path.Combine(Path.GetDirectoryName(relativePath), Path.GetFileNameWithoutExtension(relativePath)).Replace("\\", "/");
} #>

ASP.NET MVC Bundling and RequireJS

通過T4模板生產的構建腳本如下:

ASP.NET MVC Bundling and RequireJS

({
    appDir: '../js',
    baseUrl: './',
    mainConfigFile: '../js/config.js',
    dir: '../release-js',
    modules: [
    {
        name: "config",
        include: [            // These JS files will be on EVERY page in the main.js file
            // So they should be the files we will almost always need everywhere
            "domReady",            "jquery",            "jqueryValidate",            "jqueryValidateUnobtrusive",            "bootstrap",            "moment"
            ]
    },
    {
       name: 'views/areas/admin/default/index'
    },
    {
       name: 'views/home/index'
    },
    {
       name: 'views/home/login'
    },
    ],
    onBuildRead: function (moduleName, path, contents) {        if (moduleName = "config") {            return contents.replace("/themes/default/content/js","/themes/default/content/release-js")
        }        return contents;
    },
})

ASP.NET MVC Bundling and RequireJS


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黄龙县| 崇阳县| 兴安盟| 瓦房店市| 冕宁县| 交口县| 金乡县| 阳谷县| 姚安县| 富川| 左云县| 塔河县| 根河市| 农安县| 肥乡县| 竹北市| 色达县| 宜章县| 鹤壁市| 古交市| 东源县| 蓬溪县| 环江| 垣曲县| 通许县| 内黄县| 申扎县| 卓尼县| 武山县| 镇宁| 新营市| 裕民县| 米脂县| 云安县| 长沙市| 新余市| 沁水县| 乐至县| 沾化县| 天津市| 永福县|