我对lodash完全不熟悉,但我正试图按照this article实施去抖动。我可以使用v3.5 via this CDN来获取它,但每次我尝试下载4.11.1并将其包含在我的项目中时,我都会得到Uncaught Type Error: _.debounce is not a function
。
这是我的脚本,非常简单:
jQuery(window).on("resize", _.debounce(function() {
console.log("hello world");
}, 400));
为什么这不适用于较新版本的lodash的任何想法?我引用the documentation并且我没有看到任何不合适的地方。很奇怪。
答案 0 :(得分:7)
好吧,我对此感到愚蠢。我完全错过了那里有两个独立的构建,“核心”和“完整”。显然核心并没有与debounce
捆绑在一起。我现在已经使用完整的脚本了。