您好我试图在Angular 2组件中编写一些d3.js代码。 为了使可视化工作,我试图将一些数据绑定到svg元素,使用" this" d3.js函数内的访问器
slices.transition()
.attrTween("d", (d: DataSet) => {
console.log((<any>this));
// do something with the this variable
});
现在的问题是&#34;这个&#34;变量指向Angular 2组件对象。我试图访问由d3.js创建的svg元素。
有没有其他方法可以访问此变量?