Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5933945
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T15:02:42+00:00 2026-05-22T15:02:42+00:00

I’m trying to store some additional data along with the standard error message in

  • 0

I’m trying to store some additional data along with the standard error message in a custom validator in Rails 3.

For example, (ignoring built-in validators) suppose I wanted to check to see if a post is a duplicate before it’s saved. I might write my custom validation method like this:

class Post < ActiveRecord::Base

  # prevent duplicate posts
  validate do |post|
    duplicates = Post.find_all_by_body(body)
    errors.add_to_base("Post is a duplicate!") if duplicates.length

    # something like this is desired:
    # errors.add_to_base("Post is a duplicate",
    #  :extra => { :duplicates => duplicates })
  end

end

This will let the user know there are duplicates, but along with adding the error message I would also like to store the duplicates so they can be displayed to the user. How would I store the list of duplicate posts retrieved during validation such that it is associated with the record’s errors for the body field, and available to my view?

A simpler example might be length validation: If a field exceeds its maximum length, how can I store the maximum length along with an error message without simply interpolating it into the message as Rails currently does?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T15:02:43+00:00Added an answer on May 22, 2026 at 3:02 pm

    I have not had to do this before, but my first thought is to create a new method on the object called duplicates.

    attr_accessor :duplicates
    

    Then in your custom validate method, you can set the duplicates on the object making them available to the view when you render the errors. Notice your current code doesn’t change much:

    validate do |post|
      duplicates = Post.find_all_by_body(body)
      errors.add_to_base("Post is a duplicate!") if duplicates.size > 0
    end
    

    You would then have to intercept that error in the view manually so that you can print out all the duplicates if the “Post is a duplicate!” error is encountered.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.