1 回答

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超13個(gè)贊
在檢查和重定向之前,您必須等待異步功能confirmationResult.confirm完成。
user.linkWithPhoneNumber(phoneNumber.value, appVerifier)
.then(function(confirmationResult) {
// Ask user to provide the SMS code.
phoneNumber.style.display = 'none';
signInButtonElement.style.display = 'none';
//inputCode.style.display = 'inline-block'
//codeButton.style.display = 'inline-block'
var code = window.prompt('Provide your SMS code');
// Complete sign-in.
return confirmationResult.confirm(code);
})
.then(() => {
// Wait for linking to complete before redirecting.
updateStatus();
});
}
添加回答
舉報(bào)