我有一个 Rails 应用程序,我在其中为“帖子”生成了一些标题(字符串)和正文(内容)的脚手架。
这允许我创建、编辑和删除帖子。
我刚刚安装了设计,所以现在我可以在应用程序中拥有用户 - 唯一的问题是无论我以什么身份登录,都会显示相同的帖子。
有没有办法让每个用户都有特定的帖子?我是否必须更改帖子或用户模型或添加新控制器?
如果这让您感到困惑,另一种说法是,我希望每个用户都创建自己的“帖子”,而其他用户看不到。
更新
这是posts_controller
class PostsController < ApplicationController
before_filter :authenticate_user!, except: [:index, :show]
# GET /posts
# GET /posts.json
def index
# @posts = current_user.posts
@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])
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 Post < ActiveRecord::Base
attr_accessible :content, :name
belongs_to :user
end