解释
惰性函数是指在需要时才执行计算的一种函数。这种函数的关键思想是延迟计算,直到实际需要结果时再执行,从而避免不必要的计算,提升性能。
没有惰性函数的例子
如果不使用惰性函数,每次点击进去时候都要经过这个判断,从而每次就要去计算,照成不必要的资源浪费
btn.onclick = function() {if(判断条件) {console.log('1')}else {console.log('2')}
}
使用惰性函数例子
<script>const btn = document.querySelector(".btn");btn.onclick = function () {copyText("你好呀");};let copyText = (text) => {if (navigator.clipboard) {copyText = (text) => {navigator.clipboard.writeText("你好呀1");};} else {copyText = (text) => {navigator.clipboard.writeText("你好呀2");};}};
这种使用函数可以用到会员网站上,去进行判断会员等级等等