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

  • SEARCH
  • Home
  • 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 890021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T13:39:38+00:00 2026-05-15T13:39:38+00:00

I have a form where users can enter an isbn and it will try

  • 0

I have a form where users can enter an isbn and it will try to lookup book data and save it.
When validation fails for the isbn lookup (for example if somebody entered it incorrectly), I would like it to redirect to another form where users can enter data in manually if the isbn lookup fails (but not if other validations like numerical price fail).

Any ideas on how to do this? Thanks for the help!

  • 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-15T13:39:38+00:00Added an answer on May 15, 2026 at 1:39 pm

    Trying to understand what you’re trying to do: please correct me if my assumption is wrong.

    If you can’t save the model because the ISBN failed validation and you want to display a form for just the ISBN since the other fields are OK, there’s a couple things you can do to hold the other attributes in the meantime:

    • Output them as hidden fields when you render the form
    • Store them in session so you can redirect

    If you can’t save the model then there doesn’t seem to be any reason for redirecting to another action: the user is still trying to complete the create action, except you want to render a different form for just the ISBN.

    Here’s how I’d do it using session, so you can adapt this for redirecting to another action if you need to:

    def create
      book = Book.new( params[:book].reverse_merge(session[:unsaved_book]) )
      if book.save?
        session.delete[:unsaved_book]
        flash[:notice] = 'I love it!'
        redirect_to book
      else
        if book.errors.on[:isbn] && book.errors.length == 1
          session[:unsaved_book] = params[:book]
          flash[:error] = 'Sorry, wrong ISBN number.'
          render 'unknown_isbn'
        else
          flash[:error] = 'Check your inputs.'
          render 'new'
        end
      end
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

in my PHP web application,I have a dataentry form where users will enter data
I have a form where users can enter data that ultimately would be used
I have a form where users can enter the names and emails addresses of
I have a very simple form where users can enter their email and click
I want to build a form where users can enter some data in a
I have a form where users can enter product id and its quantity. What
I have a form where users can enter tags like tag1,tag2,tag3. I explode that
I have a web form where the users can enter the parts of the
I have a form where users can enter the amount they spend on their
I have a form in which users can enter prices for items. Ideally I

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.