gatsby-plugin-recaptcha的样本用法

时间:2018-12-18 06:37:08

标签: recaptcha gatsby

我必须对项目中的表单使用gatsby-plugin-recaptcha。我找不到使用此插件的任何示例。如果有人可以分享与此有关的任何信息,那将是很大的帮助。

谢谢

2 个答案:

答案 0 :(得分:0)

将此代码放在您的组件中 并从react-helmet导入头盔。

else

答案 1 :(得分:0)

`-> npm install-保存reaptcha

import React, { Component } from 'react';
import Reaptcha from 'reaptcha';

class MyForm extends Component {
constructor(props) {
super(props);
this.state = {
  verified: false
 };
}

const onVerify = (recaptchaResponse) => {
this.setState({
  verified: true
});
};

render(){     返回(                                    提交                        );      }     }

 see the reference: https://github.com/sarneeh/reaptcha`