7

我正在用帖子和用户在 Rails 上创建自己的博客。当我点击他时,我需要显示来自特定作者的所有帖子(这里的概念:链接)。我该怎么办?请说出我应该添加哪些额外的信息或代码

用户控制器:

class UsersController < ApplicationController
def show
@user = User.find(params[:id])
@posts = @user.posts
  end

end

帖子控制器:

class PostsController < ApplicationController
before_filter :authenticate_user!, :except => [:show, :index]

# GET /posts
# GET /posts.json



def index
 @posts = Post.all

  respond_to do |format|
  format.html # index.html.erb
  format.json { render json: @posts }
  end
end

# GET /posts/1
# GET /posts/1.json
def show
@post = Post.find(params[:id])

respond_to do |format|
  format.html # show.html.erb
  format.json { render json: @post }
  end
end

# GET /posts/new
# GET /posts/new.json
def new
 @post = Post.new

  respond_to do |format|
  format.html # new.html.erb
  format.json { render json: @post }
  end
end

# GET /posts/1/edit
def edit
  @post = Post.find(params[:id])
 end

 # POST /posts
# POST /posts.json
 def create
#@post = Post.new(params[:post])
@post = current_user.posts.build(params[:post])
respond_to do |format|
  if @post.save
    format.html { redirect_to @post, notice: 'Post was successfully created.' }
    format.json { render json: @post, status: :created, location: @post }
  else
    format.html { render action: "new" }
    format.json { render json: @post.errors, status: :unprocessable_entity }
    end
  end
 end

# PUT /posts/1
# PUT /posts/1.json
def update
 @post = Post.find(params[:id])

 respond_to do |format|
  if @post.update_attributes(params[:post])
    format.html { redirect_to @post, notice: 'Post was successfully updated.' }
    format.json { head :no_content }
  else
    format.html { render action: "edit" }
    format.json { render json: @post.errors, status: :unprocessable_entity }
    end
  end
end

# DELETE /posts/1
# DELETE /posts/1.json
def destroy
@post = Post.find(params[:id])
@post.destroy

 respond_to do |format|
  format.html { redirect_to posts_url }
  format.json { head :no_content }
  end
 end
end

用户模型:

class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
has_many :posts, :dependent => :destroy
validates :fullname,      :presence => true, :uniqueness => true
validates :password,      :presence => true
validates :email,         :presence => true, :uniqueness => true


devise :database_authenticatable, :registerable,
     :recoverable, :rememberable, :trackable, :validatable

attr_accessible :email, :password, :password_confirmation, :fullname


end

后模型:

class Post < ActiveRecord::Base
attr_accessible :text, :title

validates :user_id, :presence => true
validates :title,   :presence => true
validates :text, :presence => true

belongs_to :user
has_many :comments
end
4

2 回答 2

15

这是对 Ruby on Rails 的相当直接的使用。我建议阅读Active Record Basics以加快速度。

首先,您应该在 Posts 和 Users 之间建立一个 belongs_to 关系,如下所示:

class User < ActiveRecord::Base
  has_many :posts
end

class Post < ActiveRecord::Base
  belongs_to :user
end

这将一个.posts方法添加到User 实例和一个.user方法到Post 实例

然后,您必须决定您希望应用程序的 URL 结构如何工作。以下是我脑海中的一些选择:

  1. /posts?user=:user_id
  2. /posts/by/:user_id
  3. /users/:id/posts

鉴于用户与其帖子之间的关系,我的建议(我相信一般的“Rails 方式”)将是#3。因此,让我们将路由添加到config/routes.rb

创建 JUST 这条路线的捷径:

get 'users/:id/posts' => 'users#posts', :as => :user_posts

基于资源创建路线的漫长道路:

resources :users do
  member do
    get :posts
  end
end

这两种方法都将提供一个名为的辅助方法user_posts_path和一个被调用的辅助方法user_posts_url,可在您的视图中使用link_to辅助方法链接到用户帖子列表:

<%= link_to post.user.name, user_posts_path(post.user) %>

现在,您必须在以下位置添加控制器操作app/controllers/users_controller.rb

class UsersController < ActionController::Base

  def posts
    @user = User.find(params[:id])
    @posts = @user.posts
  end

end

然后将您的 HTML/ERB 代码添加到app/views/users/posts.html.erb

<% @posts.each do |post| %>
  <%= post.inspect %>
<% end %>

这应该使您具有显示用户帖子的基本能力。您可以通过重用 post partial 或其他一些不错的快捷方式来增强它,但我将把它作为练习留给您弄清楚。

于 2013-07-28T19:19:28.567 回答
1

您需要 2 个模型:用户和帖子。它们之间有一个关系:用户有很多帖子,帖子属于用户。要在数据库中创建此关系,您应该将 user_id 列添加到 posts 表中。为此,只需运行以下命令:

rails generate migration AddUserIdToPosts user_id: integer

之后不要忘记运行 rake db:migrate

要创建模型之间的关联,请添加到 User 模型:

has_many :posts, dependent: :destroy

并发布模型:

belongs_to :user

现在您可以在帖子上使用“用户”方法,在用户上使用“帖子”方法。例如在用户控制器的显示操作中:

@user = User.find(params[:id])
@posts = @user.posts

此链接将为您提供帮助:http: //guides.rubyonrails.org/association_basics.html http://api.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html

于 2013-07-28T18:57:33.193 回答