javascript – MVC4 Beta Minifying and Bundling:在浏览器中排序文件和调试

栏目: 后端 · 发布时间: 6年前

内容简介:代码日志版权声明:翻译自:http://stackoverflow.com/questions/9657412/mvc4-beta-minification-and-bundling-ordering-files-and-debugging-in-browser

我已经开始使用MVC4 Beta附带的捆绑和缩小.我遇到了一些问题:

一方面,如果我使用经典的<script src =“Folder / js”type =“text / javascript”/>捆绑,似乎我必须重命名我的文件,以确保它们按照正确的顺序捆绑.

假设我有三个javascript文件:“ants.js”,“bugs.js”,“insects.js”

> ants.js依赖于bugs.js

bugs.js取决于insects.js

>默认捆绑似乎按字母顺序捆绑.

>为了使它们正确绑定,我必须将它们重命名为:“0.insects.js”,“1.bugs.js”,“2.ants.js”

这真的是黑客,必须有一个更清洁的方式.

我遇到的下一个问题是调试.我喜欢在我的测试浏览器中浏览javascript,有没有办法在DEBUG模式下关闭简化?

编辑:要清楚,我知道我可以创建捆绑包,并从C#注册它,它似乎真的很丑,要这样做.

暂时得到非最小化的输出使用这个

public class NonMinifyingJavascript : IBundleTransform
{
    public void Process(BundleContext context, BundleResponse bundle)
    {
        if(bundle == null)
        {
            throw new ArgumentNullException("bundle");
        }

        context.HttpContext.Response.Cache.SetLastModifiedFromFileDependencies();

        foreach(FileInfo file in bundle.Files)
        {
            HttpContext.Current.Response.AddFileDependency(file.FullName);
        }

        bundle.ContentType = "text/javascript";
        //base.Process(context, bundle);
    }
}

如果你想要完全基于配置设置,我想象你可以创建一个IBundle变换,根据你的配置设置委派给这个或JsMinify

为了控制javascript文件的顺序,您需要使用BundleFileSetOrdering

var javascriptBundle = new Bundle("~/site/js", new NonMinifyingJavascript());

         //controls ordering for javascript files, otherwise they are processed in order of AddFile calls
         var bootstrapOrdering = new BundleFileSetOrdering("bootstrap");
         //The popover plugin requires the tooltip plugin
         bootstrapOrdering.Files.Add("bootstrap-tooltip.js");
         bootstrapOrdering.Files.Add("bootstrap-popover.js");
         BundleTable.Bundles.FileSetOrderList.Add(bootstrapOrdering);
         javascriptBundle.AddDirectory("~/Scripts", "bootstrap-*.js");

代码日志版权声明:

翻译自:http://stackoverflow.com/questions/9657412/mvc4-beta-minification-and-bundling-ordering-files-and-debugging-in-browser


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

中国制造2025:产业互联网开启新工业革命

中国制造2025:产业互联网开启新工业革命

夏妍娜、赵胜 / 机械工业出版社 / 2016-2-22 / 49.00

过去20年,是中国消费互联网肆意生长的"黄金20年",诞生了诸如BAT等互联网巨头,而时至今日,风口正逐渐转向了产业互联网。互联网这一摧枯拉朽的飓风,在改造了消费服务业之后,正快速而坚定地横扫工业领域,拉开了产业互联网"关键30年"的大幕。 "中国制造2025"规划,恰是中国政府在新一轮产业革命浪潮中做出的积极举措,是在"新常态"和"供给侧改革"的背景下,强调制造业在中国经济中的基础作用,认......一起来看看 《中国制造2025:产业互联网开启新工业革命》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具