当我从另一个页面打开signup
页面时,Captcha
在signup
页面上可见。当我重新加载注册页面时,Captcha
消失了,但我不明白其背后的原因。
<Recaptcha
sitekey={CAPTCHA_KEY}
render="explicit"
onloadCallback={this.onCaptchaLoad}
verifyCallback={this.verifyCaptchaCallback}
badge="inline"
type="audio"
size="normal"
/>
{!isCaptchaVerified &&
captchaVerifyErrorMessage && (
<p className="error-message">{captchaVerifyErrorMessage}</p>
)}
在此我也无法理解render="explicit"