bootstrap - 加载资源失败

bootstrap - Failed to load resource

我有一个 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>

现在当我加载页面视图源代码时说

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

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

在下面link中,gone coding 用户提到的答案,已经清楚地解释了我们可以采取哪些措施来避免这个错误。

MVC Bundling - Failed to load resource

请看一下,让我知道这是否解决了您的问题。

谢谢 卡尔提克