javascript – 如何在D3回调中访问当前选择?
作者:互联网
如何在D3回调中访问当前选择?
group.selectAll('.text')
.data(data)
.enter()
.append('text')
.text((d) => d)
.attr('class', 'tick')
.attr('y', (d) => {
// console.log(this) <-- this gives me window :( but I want the current selection or node: <text>
return d
})
我可以在回调中做一个d3.select(‘.tick’),因为到那时我已经添加了一个类并且可以通过d3.select获取节点,但是如果我没有添加类呢?
解决方法:
这里的问题是使用箭头功能来访问它.
它应该是:
.attr("y", function(d){
console.log(this);
return d;
})
请参阅此处有关此箭头功能的文档:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions
它说:
An arrow function expression has a shorter syntax compared to function expressions and lexically binds the this value (does not bind its own this, arguments, super, or new.target).
要在箭头函数中获取当前DOM元素,请使用组合的第二个和第三个参数:
.attr("y", (d, i, n) => {
console.log(n[i]);
return n[i];
})
标签:javascript,d3-js,data-visualization 来源: https://codeday.me/bug/20190926/1819843.html