`
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
// ...
});
}
`
不知道是怎么回事,但虎子少了分号:有谁能帮我...
1条答案
按热度按时间k5hmc34c1#
需要更多代码来帮助您完成此操作。
一般来说,你需要在函数名前面加上一个
function
关键字,除非它是在一个类里面。例如,你可以把代码改成:或