gpt4 book ai didi

javascript - 在 ASP.NET MVC 中组合和缩小 JS 和 CSS

转载 作者:数据小太阳 更新时间:2023-10-29 03:48:46 25 4
gpt4 key购买 nike

我创建了默认的 ASP.NET MVC 3 Web 应用程序。然后我在\Views\Shared_Layout.cshtml View 中添加了三个 css 和三个 js 文件:

<!DOCTYPE html>
<html>
<head>
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/StyleSheet1.css")" rel="stylesheet" type="text/css" />
<link href="@Url.Content("~/Content/StyleSheet2.css")" rel="stylesheet" type="text/css" />

<script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/JScript1.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/JScript2.js")" type="text/javascript"></script>

</head>
<body>
<div class="page">
<div id="header">

....

当我运行应用程序时,我的html代码是

<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
<link href="/Content/Site.css" rel="stylesheet" type="text/css" />
<link href="/Content/StyleSheet1.css" rel="stylesheet" type="text/css" />
<link href="/Content/StyleSheet2.css" rel="stylesheet" type="text/css" />

<script src="/Scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
<script src="/Scripts/JScript1.js" type="text/javascript"></script>
<script src="/Scripts/JScript2.js" type="text/javascript"></script>

</head>
<body>
<div class="page">

是否有可能在 MVC 中有一个处理程序来将我的输出 html 更改为:

<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
<script src="js.axd=/Scripts/jquery-1.5.1.min.js,/Scripts/JScript1.js,/Scripts/JScript2.js" type="text/javascript"></script>
<link href="css.axd=/Content/Site.css,/Content/StyleSheet1.css,/Content/StyleSheet2.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="page">

所以链接 js.axd=/Scripts/jquery-1.5.1.min.js,/Scripts/JScript1.js,/Scripts/JScript2.js会将所有这些js文件的内容返回给浏览器,链接css.axd=/Content/Site.css,/Content/StyleSheet1.css,/Content/StyleSheet2.css会返回所有的内容CSS 文件。

我之前在 ASP.NET 中通过 IHttpHandler 做过一些事情,但无法弄清楚如何在 MVC 中做到这一点,因为我只是 MVC 的初学者。

任何帮助和代码示例将不胜感激。谢谢!

最佳答案

您可以使用 bundle 和 minification nuget 包。 Bundling and Minification

在 NuGet 控制台类型:“Install-Package Microsoft.AspNet.Web.Optimization”

这里的例子:

Using Web Optimization with MVC 3

关于javascript - 在 ASP.NET MVC 中组合和缩小 JS 和 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12757173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com