我正在尝试在d3应用程序中使用es6类。我有一个绑定到“拖动”事件的事件处理程序,但是我无法从事件处理程序中访问该类。手动调用处理程序时,this
是我的课程,但是触发事件时,this
是DOM元素。
代码:
class Point {
constructor(croot, cx, cy, ccolor) {
this.x = cx;
this.y = cy;
this.size = 5;
this.draggable = true;
this.root = croot;
this.color = ccolor;
this.circle = this.root.append('circle')
.attr('class', "draggable")
.attr('r', this.size)
.attr('fill', "white")
.attr('stroke', this.color)
.attr('stroke-width', 2)
.call(d3.drag(this).on('drag', this.onDrag));
this.circle.attr('transform',
`translate(${(this.x + 0.5) * scale} ${(this.y + 0.5) * scale})`);
}
onDrag() {
console.log(this);
this.x = (d3.event.x / scale);
this.y = (d3.event.y / scale);
this.circle.attr('transform',
`translate(${(this.x + 0.5) * scale} ${(this.y + 0.5) * scale})`);
}
}
答案 0 :(得分:0)
以这种方式传递函数时,将失去对此的绑定。它传递对D3调用的函数的引用,因此调用上下文会更改。您可以通过显式绑定this
来保持它。
call(d3.drag(this).on('drag', this.onDrag.bind(this))