gpt4 book ai didi

c# - 使用 ASP.NET MVC 捆绑和缩小时出现奇怪的 JavaScript 错误

转载 作者:行者123 更新时间:2023-11-30 13:37:00 37 4
gpt4 key购买 nike

我正在使用 ASP.NET MVC 5bundling and minification当我在 web.config 中将 debug 设置为 false 时出现奇怪的错误.

我使用捆绑和缩小已经有一段时间了,直到昨晚才第一次看到这个错误,因为我的下拉菜单不起作用。我无法确认这是否有效,因为我从未检查过文件。

这是部分错误:

/* Minification failed. Returning unminified contents.
(2,1): run-time error CSS1019: Unexpected token, found '!'
(2,2): run-time error CSS1019: Unexpected token, found 'function('
(2,14): run-time error CSS1031: Expected selector, found ')'
(2,14): run-time error CSS1025: Expected comma or open brace, found ')'
(2,212): run-time error CSS1019: Unexpected token, found '('
(2,213): run-time error CSS1019: Unexpected token, found '"undefined"'
(2,224): run-time error CSS1019: Unexpected token, found '!'
(2,225): run-time error CSS1019: Unexpected token, found '='
(2,239): run-time error CSS1031: Expected selector, found '?'
(2,239): run-time error CSS1025: Expected comma or open brace, found '?'
(3): Scanner error CSS1002: Unterminated string: '></a>","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c...

所以我决定创建一个独立的 ASP.NET MVC 项目,只需要使用 jQuery 2.1.1。 .我仍然得到错误。所以我认为如果我使用 jQuery 1.11.1 它会消失.我仍然遇到同样的错误。

为什么会出现此错误?它显然是 jQuery 文件中的内容。我在 Bootstrap 的 JavaScript 文件中遇到了同样的错误。

什么时候最好使用捆绑和缩小?仅使用您自己的 JavaScript 和 CSS 文件?您应该捆绑和缩小第三方文件,还是只使用他们的 CDN?我在工作中受防火墙保护,所以使用外部 CDN 不是我的选择。

这是我的 web.config:

<system.web>
<compilation targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2" />
</system.web>

我的_布局文件:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>My Website</title>
</head>
<body>
@RenderBody()
@Scripts.Render("~/bundles/js")
</body>
</html>

还有我的 BundleConfig.cs 文件:

public class BundleConfig
{
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new StyleBundle("~/bundles/js").Include(
"~/Scripts/jquery-{version}.js"));
}
}

产生的输出是:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>My Website</title>
</head>
<body>
<h2>Index</h2>
<script src="/bundles/js?v=7gm4LP0WuTab97QPOJSizw2PGm8jrBl7HRdnANRLbBY1"></script>
</body>
</html>

这两个文件也有问题:

  • html5shiv.js
  • 响应.js

所以问题是,是无效的 JavaScript 错误还是充满错误的捆绑和缩小?

最佳答案

有一个问题:

bundles.Add(new StyleBundle("~/bundles/js").Include(
"~/Scripts/jquery-{version}.js"));

根据 js 文件的需要,使用 ScriptBundle 而不是 StyleBundle:

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

您可能已经将项目中的 StyleBundle 代码复制到普通的 MVC 项目中。

关于c# - 使用 ASP.NET MVC 捆绑和缩小时出现奇怪的 JavaScript 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27264731/

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