9
번 들러는 .min 파일을 포함하지 않습니다
확장명이 .min.js 인 파일을 포함하지 않는 mvc4 번 들러에 이상한 문제가 있습니다. 내 BundleConfig 클래스에서 선언합니다. public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/Scripts/jquery") .Include("~/Scripts/jquery-1.8.0.js") .Include("~/Scripts/jquery.tmpl.min.js")); } 내 견해로는, 나는 선언한다 <html> <head> @Scripts.Render("~/Scripts/jquery") </head><body>test</body> </html> 렌더링 할 때는 렌더링 만 <html> <head> <script src="/Scripts/jquery-1.8.0.js"></script> </head> <body>test</body> </html> jquery.tmpl.min.js의 이름을 …