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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T11:47:27+00:00 2026-06-10T11:47:27+00:00

I have a method in my Post model which gets the user posts def

  • 0

I have a method in my Post model which gets the user posts

  def self.find_user_posts(user_id)
    where(:user_id => user_id).limit(15)
  end

then in view i have

<% Post.find_user_posts(@user.id).each do |p| %>
    <%= render_post(p) %>
<% end %>

which then call a partial called /posts/_post.html.erb

my problem is that i want to get each user picture from the users table since both tables share a foreign column called user_id

i also have in post model

belongs_to :user, :foreign_key => 'post_id'

and in user model

has_many :post, :foreign_key => 'post_id'
  • 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-06-10T11:47:28+00:00Added an answer on June 10, 2026 at 11:47 am

    You can simplify this.

    in your view

    <% @user.posts.limit(15).each do |post| %>
      <%= render_post(post) %>
    <% end %>
    

    This will let you delete

    def self.find_user_posts(user_id)
        where(:user_id => user_id).limit(15)
    end
    

    Which should be a named_scope if needed.

    Then in your _post partial you should be able to do something like

    <%= image_tag(post.user.image_url) %>
    

    to show each user’s image it per post.

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

Sidebar

Related Questions

I have a User model which has_one Post model, which belongs_to User. Through a
I have a static method 'findAll' on a model which basically gets all rows
I have the following code which is giving me a Method POST, Status (canceled)
I have a AJAX post method that gets xml data from server. But when
I have created a Webpage which will post as post method..not as get method.
In a php-script i have a form, method is post, action-attribute is empty, which
In views.py I have the following view which gets called when a new user
I have a Post model and a Comment model (which is a nested resource
I have a Posts model and every post also contains Blocks (also a model).
I have field in my Model which indicates whether a user wants to receive

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.