-1

Twitter のコピーを作成していますが、現在、他のユーザーがフォローしているユーザーからのすべての投稿を表示しようとしています。私はRubyとRailsが初めてなので、これを本当に奇妙な方法でやっているかもしれません..

これらは私が持っているファイルです:

セッション#home.html.erb

<h2 class='User_Header'> Home <h2>

<%= link_to "New Post", controller: "posts", action: "new" %>
<%= link_to "Log Out", :controller => "sessions", :action => "logout" %>
<%= show_tweets("following") %>

セッションヘルパー

module SessionsHelper

    def show_tweets(opt)
        if opt == "following"
            @sub = Subscription.where("userID = ?", @current_user.id)
            @post = Post.where("user_id = ?", @sub.followingID)

            render partial: 'shared/follower_tweets'
        end
    end

    def show_tweet(s)
        @post = Post.where("user_id = ?", s.id)
        render partial: 'shared/tweet'
    end

    def tweet_username(p)
        @username = User.where("id = ?", p.user_id) 
        Rails.logger.debug @username.inspect
        render partial: 'shared/user'
    end
end

_follower_tweets.html.erb

<h2>Tweets</h2>

<table>
    <tr>
        <th>Username</th>
        <th>Tweet</th>
    </tr>

    <% div_for(@post, class: 'post') do %>
        <td><%= tweet_username(@post) %></td>
        <td><%= @post.content %></td>
    <% end %>
</table>

_user.html.erb

<%= @username %>

session.rb

class Session < ActiveRecord::Base  
    attr_accessible :content, :user_id, :followingID, :userID
end

エラー

app/views/sessions/home.html.erb 行番号 9 が発生した場所:

undefined method `followingID' for #<ActiveRecord::Relation:0x007fd74b66f8a8>
4

2 に答える 2

0

何が起こっているかというとfollowingIDSessionモデルではなくモデルを使用しているということですSubscription。次のようなものにする必要があります。

class Subscription < ActiveRecord::Base  
  attr_accessible :followingID
end

しかし、問題はそれよりも大きい。Active Record Associationsについて読む必要があります。そうすれば、次のようなことができます

@subs = @current_user.subscriptions
@posts = @current_user.posts
于 2013-04-29T23:05:13.953 に答える