1

私の質問は、リソースとルーティングについてもう少し学ぶことです。Ruby on Rails のチュートリアル ブックに従って、アプリケーションのカスタマイズを開始しました。私のアプリケーションでは、ユーザーが投稿を送信し、他のユーザーが写真を送信してそのトピックについて話し合うようにしたいと考えています。問題なくユーザーを作成できました。ホームページで、すべてのユーザーの投稿を日付別に表示したい。トピックモデルは

class Topic < ActiveRecord::Base

  attr_accessible :content, :title
  belongs_to    :user
  has_many      :posts
  validates :title, presence: true, length: { maximum: 140 }
  validates :content, presence: true
  validates :user_id, presence: true
  default_scope order: 'topics.created_at DESC'
end

投稿モデルは:

class Post < ActiveRecord::Base
  attr_accessible :content 
  belongs_to :topic
  belongs_to :user
  validates :user_id, presence: true
  validates :content, presence: true
  default_scope order: 'posts.created_at DESC'
end

移行は次のとおりです。

      create_table "topics", :force => true do |t|
        t.string   "title"
        t.text     "content"
        t.datetime "created_at", :null => false
        t.datetime "updated_at", :null => false
        t.integer  "user_id"
      end

  add_index "topics", ["user_id", "created_at"], :name => "index_topics_on_user_id_and_created_at"

私のtopics_controller:

class TopicsController < ApplicationController
  before_filter :signed_in_user, only: [:create, :destroy]
  before_filter :correct_user, only: :destroy

    def show
        @topic = Topic.find(params[:id])
        @posts = @topic.posts.paginate :page => params[:page], :per_page => 20
    end

これは私のroutes.rbです:

MyPedia::Application.routes.draw do
    resources :users
    resources :sessions, only: [:new, :create, :destroy]
    resources :topics, only: [:show, :create, :destroy]
    resources :posts
    root to: 'static_pages#home'

    match '/topicin/:id',   to: 'topics#show'

私のshow.html.erbは

<div class ="center">
<h3><%= @topic.title %></h3>  
<% if  @posts %>
  <% for post in @posts do %>  
    <p><strong><%= post.content %>  

<% end %>  
</div> 
<%end %>

私のレーキルートテーブルは次のようなものです:

     topics POST   /topics(.:format)         topics#create
      topic GET    /topics/:id(.:format)     topics#show
            DELETE /topics/:id(.:format)     topics#destroy
      posts GET    /posts(.:format)          posts#index
            POST   /posts(.:format)          posts#create
   new_post GET    /posts/new(.:format)      posts#new
  edit_post GET    /posts/:id/edit(.:format) posts#edit
       post GET    /posts/:id(.:format)      posts#show
            PUT    /posts/:id(.:format)      posts#update
            DELETE /posts/:id(.:format)      posts#destroy

.ホームページのトピックを問題なくリンク リストとして表示できます。それらをクリックすると、トピックとその中の投稿が表示されます。localhost:3000 を使用すると、これが今得られるものです。

No route matches {:action=>"show", :controller=>"topics", :id=>#<Topic id: nil, title: nil, content: nil, created_at: nil, updated_at: nil, user_id: 1>}

localhost:3000/topics/1 を使用する場合

SQLite3::SQLException: no such column: posts.topic_id: SELECT  "posts".* FROM "posts"  WHERE "posts"."topic_id" = 1 ORDER BY posts.created_at DESC LIMIT 20 OFFSET 0

そのため、指示を読みましたが、トピックを直接使用する方法が見つかりません。長い質問で申し訳ありません.これは、レールに関する多くの質問を理解するのに役立ちます.

編集 1: 投稿テーブルに topic_id を追加しました ... static_pages コントローラーは次のとおりです。

class StaticPagesController < ApplicationController
  def home
    @topic = current_user.topics.build if signed_in?
        @topics = Topic.paginate :page => params[:page], :per_page => 20
  end

間違いは _topics.html.erb にあります:

 <% for topic in @topics do %>  
!!!!!  <li><%=link_to topic.title, topicin_path(@topic) %></li>  

 <%= will_paginate @topics %>
<% end %>  
4

2 に答える 2

0

まず、link_toホームページで確認する必要があります。link_toユーザーのトピックが見つからないようです。

topic_idモデルにpostsあるので、belongs_to :topicも必要ですPost。の移行を確認しposts、適切な移行を作成してくださいrake db:migrate

最後に、トピックが必要だとは思いません。user投稿にはユーザーではなくトピックがあります。@user.posts.topic次に、とを呼び出すことができtopics.first.posts.first.userます。

幸運を。

于 2012-06-25T12:23:20.310 に答える
0

ネストされた属性を使用しているようですが、ネストされたルート リソースを使用していないため、パスは投稿ごとのトピックではなく、トピックごとの値を生成しています。

resource doメソッドを使えば簡単にできます

resource :posts do 
  resource :topics
end

またはWawa Looが言ったように、関係値を渡す必要があります

あなたのエラーのためにも SQLite3::SQLException: no such column: posts.topic_id: SELECT "posts".* FROM "posts" WHERE "posts"."topic_id" = 1 ORDER BY posts.created_at DESC LIMIT 20 OFFSET 0

has_many または任意のリレーションを作成するときは、db にリレーション値を割り当てる必要があるため、投稿 ID 1 にいて返信をロードする場合、クエリは post_id が 1 に等しい返信を検索します。移行を実行して、この関係属性を追加します

ご挨拶、

于 2012-06-25T13:46:18.890 に答える