gpt4 book ai didi

javascript - bootstrap - 无法加载资源

转载 作者:太空宇宙 更新时间:2023-11-04 15:40:26 25 4
gpt4 key购买 nike

我有一个 aspnet mvc 应用程序 我的 Bootstrap 包无法在浏览器中加载

BundlesConfig

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

bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include(
"~/Scripts/bootstrap.js",
"~/Scripts/respond.js",
"~/Scripts/bootstrap-multiselect.js"));

_Layout.cshtml

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - My ASP.NET Application</title>
@Scripts.Render("~/bundles/jquery")

@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<div> ... <div>
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
</body>
</html>

现在当我加载页面 View 源时显示

<script src="/Home/~bundles/bootstrap"></script> Failed to load resource

为什么它给出了错误的地址,所有其他脚本都找到了

最佳答案

在下面的链接中,消失的编码用户提到的答案,已经清楚地解释了我们可以采取哪些方法来避免此错误。

MVC Bundling - Failed to load resource

请查看并告诉我这是否解决了您的问题。

谢谢卡西克

关于javascript - bootstrap - 无法加载资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43928061/

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