是的,你可以。您只需在每個項目的App_Start\BundleConfig.cs
文件中添加一些代碼即可。
這樣,你的方法RegisterBundles
補充:
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("Root/Assets/js").Include(
"Root/Assets/Js/*.js")); //You put your path where there is the Root
bundles.Add(new StyleBundle("Root/Assets/css").Include(
"Root/Assets/CSS/*.css")); //You put your path where there is the Root
// Code removed for clarity.
}
然後你就可以把這些線各Layout.cshtml
@Styles.Render("Root/Assets/css")
@Scripts.Render("Root/Assets/js")
內要打電話給你Js
圖書館和CSS
文件。
我希望這會有所幫助
它的工作。感謝提示。 – Oxygen
當設置BundleTable.EnableOptimizations = false時,它不工作。 – Oxygen