我正在与d3.js结合在react.js中编写代码。 但是有一个很小但我不了解的行为。
componentWillMount() {
this.setState({
dummyData: [{
price: 13,
age: 43,
etc: 99
},
{
price: 33,
age: 22,
etc: 100
}]
}
componentDidMount () {
this.keys = Object.keys(this.state.dummyData[0]);
console.log(this.keys) // ["price", "age", "etc"]
}
someMethod(){
console.log(this.keys) // ["price", "age", "etc"]
this.svg.append('g')
.selectAll('g')
.data(this.state.dummyData)
.enter()
.append('g')
.attr('transform', d => {
console.log(this.keys); // ["price", "age", "etc"]
return 'translate(' + this.x0(d.name) + ', 0)';
})
.selectAll('rect')
.data( function(d){
console.log(this.keys); // undefined
return this.keys.map( function(key){ return { key: key, value: d[key] }; }); }) // This statement causes an error
.enter()
.append('rect')
.attr('x', function(d){ return this.x1(d.key) })
.attr('y', function(d){ return this.y(d.value) })
.attr('width', this.x1.bandwidth())
.attr('height', function(d){ return height - this.y(d.value) })
.attr('fill', function(d){ return this.z(d.key) });
}
...
从代码中可以看到,this.keys保持其值,直到到达第二个数据调用为止。我真的不知道那时会发生什么。
答案 0 :(得分:1)
这是因为范围和函数在javascript中的工作方式。如果将函数更改为箭头函数,它将自动绑定作用域,您将看到期望的结果。
作为一个简短的解释:箭头函数自动将声明它们的作用域绑定到函数,而函数未声明时,您必须将想要的作用域明确绑定到该函数。