Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用于Rejuicer在 ASP.NET 中动态地缩小和合并 JS 文件和 CSS 文件。 我如何改变组合的顺序。 假设我有三个 JS 文件:
Rejuicer
apple.js orange.js 香蕉 .js
现在,我想要以下顺序:
orange.js apple.js 香蕉 .js
如何更改文件组合的顺序?谢谢
当您设置榨汁机时,在“global.asax.cs”中,您可以指定确切的顺序,如下所示:
OnRequest.ForJs("~/combined-{0}.js") .Combine .File("~/Scripts/orange.js") .File("~/Scripts/apple.js") .File("~/Scripts/banana.js") .Configure();