バンドルの違いは何ですか:
bundles.Add(new ScriptBundle("~/bundles/jquery")
.Include("~/Scripts/jquery-{version}.js","file2.js", "file3.js"));
対
bundles.Add(new ScriptBundle("~/bundles/jquery")
.Include("~/Scripts/jquery-{version}.js")
.Include("file2.js")
.Include("file3.js"));
1 つのインクルード メソッド内に多くのスクリプトを配置することも、多くのインクルード メソッドを使用することもできます。
いつ何を使えばいいですか?