gpt4 book ai didi

asp.net scriptbundle 多个包含 vs 单个包含

转载 作者:行者123 更新时间:2023-12-04 19:06:28 27 4
gpt4 key购买 nike

捆绑有什么区别:

  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"));

我可以在 ONE include 方法中放入许多脚本,也可以使用许多 include 方法。

我什么时候应该使用什么?

最佳答案

任何一种选择都可以,它是一种语法、可读性的选择。 Include("resource1", "resource2", "resourceN")是使用 params 的 Include 方法的简单重载关键词。在 C# 中 params关键字允许可变数量的参数。
Include('Resource1").Include("Resource2").Include("ResourceN")是 Include 方法的不同签名,它接受一个字符串参数。 Include("resource1").Include("resource2") 是简单的链接。

两种语法最终都会调用相同的代码来添加“资源”字符串路径。您只是调用 Include 方法的不同签名/重载定义来传递字符串资源/js 参数。

关于asp.net scriptbundle 多个包含 vs 单个包含,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23198182/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com