gpt4 book ai didi

css - 未捕获的语法错误 : Unexpected token exception after bundle two CSS file in MVC4

转载 作者:技术小花猫 更新时间:2023-10-29 10:34:55 25 4
gpt4 key购买 nike

在我的 MVC4 元素中,我 bundle 了两个 css 文件。当浏览渲染这个文件时,我得到了两个异常。

Uncaught SyntaxError: Unexpected token .
Uncaught SyntaxError: Unexpected token {

我编写了这段代码来 bundle 我的 CSS 文件。

public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new StyleBundle("~/Content/css")
.Include("~/Content/css3.css","~/Content/styles.css"));
}

我在我的 _Layout.chshtml 页面中调用它。

<head>
@Scripts.Render("~/Content/css")
</head>

并获取异常。

但如果我以这种方式调用这些 CSS 文件,那么一切都会正常进行。

<head>
<link href="~/Content/css3.css" rel="stylesheet" />
<link href="~/Content/styles.css" rel="stylesheet" />
</head>

这是我的错误的屏幕截图。

enter image description here

最佳答案

这是因为它正在渲染 <script>标签。应该是@Styles.Render而不是 @Scripts.Render .

关于css - 未捕获的语法错误 : Unexpected token exception after bundle two CSS file in MVC4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16135377/

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