索引或大小为负数,或大于允许的值

Index or size was negative, or greater than the allowed value.

本文关键字:大于 小为 索引      更新时间:2023-09-26

我在我的网站上使用颜色窃贼.js根据我的作品集图像渲染调色板。

有时它可以工作,但大多数时候我都会收到下面的错误。我不是JS超级英雄,所以如果有人能在这里帮助我,那就太好了。

未捕获的索引大小错误:索引或大小为负数,或大于 允许的值。

链接到我的投资组合页面

您可以在控制台中看到弹出的错误,当我在短时间内第一次加载它时,它似乎很好。

该行为(有时有效,有时无效)是由于尝试在不加载图像的情况下调用颜色窃贼引起的,请尝试使用 onload 事件:

var el = document.getElementById(my_image_id);
var img = new Image();
img.onload = function() {
  var dominantColor = colorThief.getColor(el);
  /* ... */
};
img.src = el.getAttribute('src');