gpt4 book ai didi

javascript - ReactJS:在 JQuery 事件监听器函数中调用 'this'

转载 作者:行者123 更新时间:2023-11-29 21:32:40 27 4
gpt4 key购买 nike

我试图在 JQuery 事件回调中引用 this(即 ReactJS 组件):

var Component = React.createClass({
func1: function(){
$("#multi").multiselect({
onChange: function(a, b){
this.test();
},
});
},
test: function(){
console.log("Calling a react component function");
}
...
});

然而它说:

TypeError: this.test is not a function

如何在 JQuery 事件回调函数中引用 this

最佳答案

您需要将 onChange 回调绑定(bind)到上下文:

onChange: function(a, b) {
this.test();
}.bind(this)

你也可以使用箭头函数:

onChange: (a, b) => {
this.test()
}

关于javascript - ReactJS:在 JQuery 事件监听器函数中调用 'this',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35785820/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com