作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 Dygraphs 渲染图表的 React 组件。我想在单击该系列的标签时隐藏该系列。
createGraph() {
this.g = new Dygraph(
this.refs.graphdiv,
this.state.options.data,
{
strokeWidth: 1,
labels: this.state.options.labels,
drawPoints:true,
stepPlot: true,
xlabel: 'Time',
ylabel: 'Metric value',
legend: 'always',
connectSeparatedPoints: true,
series: this.state.options.series,
labelsDiv: "labels",
legendFormatter: this.legendFormatter
}
);
}
render() {
return (
<div>
<h2>Time series for system {this.props.sysId.replace(/_/g, ':')}</h2>
<h3>{this.props.date}</h3>
<div id="graphdiv" ref="graphdiv" style={{width: window.innerWidth - 50, height: window.innerHeight - 200}}></div>
<p></p>
<div id="labels"></div>
</div>
);
}
为此,我实现了 dygraphs 回调“legendFormatter”并使用 onClick 回调创建标签:
legendFormatter(data) {
if (data.x == null) {
// This happens when there's no selection and {legend: 'always'} is set.
let f = () => {
data.dygraph.setVisibility(0, false);
data.dygraph.updateOptions({})
}
// return '<br>' + data.series.map( (series) => {
// return series.dashHTML + ' ' + "<label onclick='f();'>" + series.labelHTML + "</label>"
// }, this).join('<br>');
let x = data.dygraph;
return '<br>' + data.series[0].dashHTML + ' ' + "<label onclick='console.log(x);'>" + data.series[0].labelHTML + "</label>"
}
问题是我无法从 React 访问“this”,也无法访问 legendFormatter 函数中的变量:
f() is undefined
x is undefined
如何将上下文绑定(bind)到 onClick 函数?
最佳答案
您可以添加一个构造函数并将 this
绑定(bind)到 legendFormatter
:
constructor() {
super();
this.legendFormatter = this.legendFormatter.bind(this);
}
或者您可以将 legendFormatter
函数改为属性初始化箭头函数:
legendFormatter = (data) => {
// ...
};
关于javascript - 如何在回调中从 React 组件访问 "this",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41802425/
我是一名优秀的程序员,十分优秀!