gpt4 book ai didi

javascript - 功能实用类

转载 作者:数据小太阳 更新时间:2023-10-29 05:03:44 25 4
gpt4 key购买 nike

我正在尝试提高 javascript 应用程序的整体性能,并且正在尝试为所有独立函数创建一个实用程序类。这样做是好的做法吗?

我也读过可以使用这样的匿名函数:

(function(){

var Utils = {
test: function () { ... },
test1: function () { ... }
...
}

}())

但由于某种原因我无法在我的其他类(class)中使用 Utils.test(),我得到

ReferenceError: Utils is not defined

现在我正在使用

  var Utils = {
test: function () { ... },
test1: function () { ... },
....
}

这样做会有任何改进还是我应该坚持经典的分离功能

function test() { ... }
function test1() { ... }
....

感谢您的帮助

最佳答案

你需要不同的语法来使用 IIFE,但我相信这样做是很好的做法

var Utils = (function(){

return {
test: function () { ... },
test1: function () { ... }
...
}

}())

关于javascript - 功能实用类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35537760/

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