2017-05-12 110 views
1

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

在下面的鏈接,由了編碼用戶答案提到,已經清楚地解釋什麼是我們可以做的方式,爲避免這個錯誤。

MVC Bundling - Failed to load resource

請看看,讓我知道這是否解決您的問題。

謝謝 karthik