admin管理员组文章数量:1344973
From :
If signInWithPhoneNumber results in an error, reset the reCAPTCHA so the user can try again:
grecaptcha.reset(window.recaptchaWidgetId); // Or, if you haven't stored the widget ID: window.recaptchaVerifier.render().then(function(widgetId) { grecaptcha.reset(widgetId); }
But grecaptcha
is never defined. Do I have to import it from somewhere?
From https://firebase.google./docs/auth/web/phone-auth:
If signInWithPhoneNumber results in an error, reset the reCAPTCHA so the user can try again:
grecaptcha.reset(window.recaptchaWidgetId); // Or, if you haven't stored the widget ID: window.recaptchaVerifier.render().then(function(widgetId) { grecaptcha.reset(widgetId); }
But grecaptcha
is never defined. Do I have to import it from somewhere?
2 Answers
Reset to default 11Looks like it is automatically imported by firebase. However, because I was piling code from ES2015 I needed to add
/* global grecaptcha */
to the top of my js file to make it visible by my code.
The Firebase Auth JS library will pull the grecaptcha library dynamically if it is not already included. Otherwise, if you already include it: https://www.google./recaptcha/api.js
, then it will just use that library.
本文标签: javascriptfirebase docs reference grecaptcha but never import or define itStack Overflow
版权声明:本文标题:javascript - firebase docs reference grecaptcha but never import or define it - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743802226a2541528.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论