uncaught TypeError: reduceInitial 不是一个函数

huangapple go评论148阅读模式
英文:

uncaught TypeError: reduceInitial is not a function

问题

我遇到了一个我无法理解的错误。看起来我忘记加载一个库,但我已经检查了所有可用的d3库,但我找不到哪个库有reduceInitial函数。

我使用:

d3 v3.5.17

dc v2.0.5

crossfilter v1.3.14

jquery v3.6.1

d3-color v1.4.1

d3-format v1.4.5

d3-interpolate v1.4.0

d3-scale v2.2.2

d3-scale.chromatic v1.5.0

d3-time v1.1.0

d3 v2.3.0

非常感谢您提前的帮助。

英文:

I have an error that I cannot understand. It looks like I forgot to load a library but I've gone through all the available d3 libraries I can't see which library has reduceInitial as a function.

I use:

d3 v3.5.17

dc v2.0.5

crossfilter v1.3.14

jquery v3.6.1

d3-color v1.4.1

d3-format v1.4.5

d3-interpolate v1.4.0

d3-scale v2.2.2

d3-scale.chromatic v1.5.0

d3-time v1.1.0

d3 v2.3.0

Many thanks in advance for your help

答案1

得分: -1

这是group.reduce()的第三个参数,它需要一个函数。

您可能忘记传递这个参数,所以它尝试将undefined作为函数调用。

英文:

This is the third parameter to group.reduce() and it expects a function.

You probably neglected to pass this parameter, so it's trying to call undefined as a function.

huangapple
  • 本文由 发表于 2023年6月19日 21:35:42
  • 转载请务必保留本文链接:https://go.coder-hub.com/76507174.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定