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 6765371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:42:15+00:00 2026-05-26T14:42:15+00:00

I have an application where the user selects the product they wish to view.

  • 0

I have an application where the user selects the product they wish to view.

  1. View index of products and select one
  2. The products show action is called and show.html.erb is viewed. url => /products/3

Now if the user clicks the index of the products they are again shown all the products. But I want them to be able to easily return to the product they were viewing.

The url for the products index: /products
I can’t add the product id because this won’t show the index page: /products/3
will go to the show page for product with id 3

Is there a good way to keep this information neatly in the url without doing something ugly like:

/products?product_id=3

  • 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-26T14:42:15+00:00Added an answer on May 26, 2026 at 2:42 pm

    How about storing that data in the session?

    class ProductsController
      def index
        @products = Product.all
      end
    
      def show
        @product = Product.find(params[:id])
        session[:last_viewed_product] = @product.id
      end
    end
    
    # Somewhere in your product layout
    
    <% if session[:last_viewed_product] %>
      <%= link_to "View last product", product_path(session[:last_viewed_product]) %>
    <% end %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the application in which user select the particular folder and all the
I have developed a application in which user select the particular folder and it
I have developed a application in which user select the particular folder and it
I have a simple application in which I need to let the user select
I have a text to speech application where the user can select a language
I have an application, in which User selects an images from iPhone, for photo
I have an application that is set up so that if the user selects
I have an application that gets the current position and the user selects a
I have an application where the user selects a set of options, but the
I have an application where the user selects the dates of a first statement

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.