D3转换循环抛出Uncaught TypeError:t.call不是函数

D3 transition looping throwing Uncaught TypeError: t.call is not a function

本文关键字:call 函数 TypeError 循环 转换 Uncaught D3      更新时间:2023-09-26

对D3来说非常新,对JS来说相对较新。我试图在点击时创建一个圆圈,这个圆圈一旦创建,就需要永远重复跳动。现在,它被正确地创建,并进行了一次转换,但后来由于错误,它有点死了。这是我的代码:

var shapesAtt = shapes
    // omitted: assigning fill, position, etc; working as intended
    .on("click", circleMouseClick);
function circleMouseClick(d, i)
{
    createPulse(this);
}
function createPulse(focusElement)
{
    // takes in "focal circle" element
    // some things here are hard coded for ease of reading 
    // (i.e. these variables aren't all useless)
    var focus = d3.select(focusElement);
    var origR = focus.attr("r");
    var origX = focus.attr("cx");
    var origY = focus.attr("cy");
    var origFill = focus.style("fill");
    var strokeColor = "black";
    var newG = svgContainer.append("g");
    var pulser = newG.append("circle").attr("id", "pulser")
        .style("fill", "none").style("stroke", strokeColor)
        .attr("cx", 150).attr("cy", 150)
        .attr("r", origR)
        .transition()
            .duration(2000)
            .each(pulsate);
}
function pulsate()
{
    var pulser = d3.select(this);
    pulser = pulser
        .transition().duration(2000)
            .attr("r", 25)
            .attr("stroke-width", 50)
        .transition().duration(2000)
            .attr("r", 90)
            .attr("stroke-width", 10)
        .each("end", pulsate);
}

我在Chrome中运行时收到的错误是:

Uncaught TypeError: t.call is not a function     d3.v4.min.js:4

我认为我的代码有问题的部分是:

function pulsate()
{
    // ...   
    .each("end", pulsate);
}

这是因为您使用的是d3版本4。v4 API发生了重大变化,因此:

而不是使用

// ...   
.each("end", pulsate);//in d3 version 3

进行

// ...   
.on("end", pulsate);//in d3 version 4

参考:https://github.com/d3/d3-transition#transition_on