在Microsoft MVC4中,我看到了一个称为bundling
的东西,用于最小化和缓存CSS
和JavaScript
等静态资源。在ScriptBundle
方法中,我看到了第一个称为virtual path
的参数,该参数只能是相对的。
bundles.Add(new ScriptBundle("~/bundles/jquery").Include("~/Scripts/jquery-1.*"));
例如,上面的代码中的
~/bundles/jquery
。我有一个问题,
bundling
如何使用此virtual path
?这用于文件缓存吗? 最佳答案
Javascript and CSS Minifying/Bundling
另请查看此帖子ScriptBundle and StyleBundle names andincludes并链接到此帖子以获取更多详细信息。
关于c# - MVC4如何使用捆绑虚拟路径?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12988835/