答案 0 :(得分:1)
如果您使用以下方法调用该方法:
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