d.x和d.y返回' undefined'。
this.nodeElements = this.nodeGroup.selectAll('circle')
.data(this.sensors);
console.log(this.sensors[0].x); // this returns the correct x value
const nodeEnter = this.nodeElements
.enter()
.append('svg:g')
.attr('transform', d => 'translate(' + d.x + ', ' + d.y + ')');
答案 0 :(得分:0)
问题实际上与离子生命周期有关。谢谢。