How to solve the handleSubmit' is not defined problem in react

when Xiaobai learns that react, uses ant design"s Form component template to write a login page, what should be done with the appearance of line10-"handleSubmit" is not defined?

clipboard.png

May.22,2021

onSubmit= {this.handleSubmit.bind (this)} , please refer to the document how-do-i-bind-a-function-to-a-component-instance


because your this points to window, you need to fix it back to the current class instance.

Arrow function is OK, bind can

Menu