問題タブ [invisible-recaptcha]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
testing - google invisible reCapthca が自分のウェブサイトをボットから保護しているかどうかを調べる方法は?
登録フォームに Google の目に見えない reCaptcha を使用しましたが、ボットを実装せずにボットに対して reCaptcha をテストするにはどうすればよいですか?
私の Web フレームワークは laravel 5.3 です。
javascript - vcRecaptchaService.execute() に .then メソッドを使用するには?
ログインフォームに Google Invisible Recaptcha を追加するためにanuglar-recaptchaを使用しています
私が直面している問題は、vcRecaptchaService.execute を呼び出した直後に、印刷すると出力としてrecaptcha_reponse
表示されることです。undefined
しかしrecaptcha_reponse
、テスト機能printRecaptchaReponse
を使用して数秒後に印刷すると、印刷されることがわかりますrecaptcha_reponse
。
ここでの問題は、ライブラリ関数vcRecaptchaService.execute()
が here を返さないこと$promise
です。実際に戻ってきたnone
これを約束する方法はありますか?
問題は何ですか:
私が欲しい もの:
vcRecaptchaService.execute().then(ret => { //do something here })
このコードの問題は、vcRecaptchaService.execute が約束を返さないことです。このコードは機能しません
質問のまとめ.then
メソッドの
使い方はvcRecaptchaService.execute()
?