bootstrap - 无法加载资源

时间:2017-05-12 01:45:57

标签: javascript asp.net-mvc twitter-bootstrap bundles

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

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

为什么找到所有其他脚本的错误地址

1 个答案:

答案 0 :(得分:1)

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

MVC Bundling - Failed to load resource

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

由于 KARTHIK