如何检索 rails recaptcha gem 错误

How to retrieve rails recaptcha gem error

如何得到

返回的错误
verify_recaptcha

在 ruby gem https://github.com/ambethia/recaptcha

我想知道它是否因为过期而失败。

如果您调用该方法:

if verify_recaptcha(model: @model, attribute: :your_attribute) && @model.save
  redirect_to model_path(@model), notice: t('saved')
else
  flash[:alert] = t('error')
  render :show, status: 422
end

错误将设置为

model.errors[:your_attribute]

您可以在这里看到每个选项的解释: https://github.com/ambethia/recaptcha#verify_recaptcha