gpt4 book ai didi

javascript - _this3.state.method 不是函数

转载 作者:行者123 更新时间:2023-12-01 01:31:02 24 4
gpt4 key购买 nike

我有一个 .js 文件:

我的类(class)组件:

[...]
constructor(props, context) {
[...]
this.method1 = this.method1.bind(this);
}

anotherMethod() {
[...]
this.state.method1();
}

method1() {
//Do something
}

我收到此错误:_this3.state.method1 不是函数。我尝试遵循 here 中的一些其他已知解决方案。

我有几个问题:

  1. 根本原因是什么?
  2. _this3 是什么?它来自哪里?

谢谢。

编辑:我找到了删除“状态”的解决方案。它应该是 this.method1(),而不是 this.state.method1()。只是好奇为什么当我在上面绑定(bind)它时我不需要“状态”?

最佳答案

因为method1不在state中,这是组件自身函数,除非method1state中,如下所示.

this.state = {method1:() =>{ /*Do something*/ }}

您可以阅读 React 网站了解 stateHandling Events .

关于javascript - _this3.state.method 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53274211/

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