Captcha in MEAN js

时间:2016-05-31 09:45:48

标签: node.js captcha mean-stack meanjs

我需要在MEAN js登录中使用Captcha。我需要最简单的方法来使它工作。我看到了Visual Captcha,但我无法理解我应该在MEAN js应用程序中使用它。

我需要MEAN js app上的离线验证码解决方案。我计划将它部署在树莓派上。

1 个答案:

答案 0 :(得分:0)

您可以在平均堆栈页面中将google recaptcha与外部脚本文件一起使用。有一个js代码。

https://developers.google.com/recaptcha/docs/display#js_api

只要遵循这个。

    <script type="text/javascript">
      var onloadCallback = function() {
        grecaptcha.render('html_element', {
          'sitekey' : 'your_site_key'
        });
      };
    </script>   </head>   <body>
    <form action="?" method="POST">
      <div id="html_element"></div>
      <br>
      <input type="submit" value="Submit">
    </form>
    <script src="https://www.google.com/recaptcha/api.js?onload=onloadCallback&render=explicit"
        async defer>
    </script>   </body> ```