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