React JS解析错误:导入Firebase代码时缺少分号

6yoyoihd  于 2022-11-17  发布在  React
关注(0)|答案(1)|浏览(118)

`

onSignInSumbit(){
    const phoneNumber = this.state.mobile();
    const appVerifier = window.recaptchaVerifier;
    signInWithPhoneNumber(auth, phoneNumber, appVerifier)
    .then((confirmationResult) => {
      // SMS sent. Prompt user to type the code from the message, then sign the
      // user in with confirmationResult.confirm(code).
      window.confirmationResult = confirmationResult;
      // ...
    }).catch((error) => {
      // Error; SMS not sent
      // ...
    });
  }

`
不知道是怎么回事,但虎子少了分号:有谁能帮我...

k5hmc34c

k5hmc34c1#

需要更多代码来帮助您完成此操作。
一般来说,你需要在函数名前面加上一个function关键字,除非它是在一个类里面。例如,你可以把代码改成:

function onSignInSubmit() {

class MyClass {
  onSigninSubmit() {
    //...
  }
}

相关问题