ruby posts_controller.rb

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby posts_controller.rb相关的知识,希望对你有一定的参考价值。

class PostsController < ApplicationController
  def index
   @posts = Post.all
  end

  def show
    @post = Post.find_by_id(params[:id])
  end

  def edit
    @post = Post.find_by_id(params[:id])
  end

  def new
    @post = Post.new
  end

  def create
    @post = Post.new(params[:post])

    if @post.save
      redirect_to post_path(@post)
    end
  end

  def destroy
    @post = Post.find_by_id(params[:id])
    @post.destroy
    flash[:notice] = "This post was deleted"
    redirect_to posts_path
  end
end

以上是关于ruby posts_controller.rb的主要内容,如果未能解决你的问题,请参考以下文章

无法在 Rails “remote: true” 表单中显示错误?

ruby [Ruby Cheat] Cheatsheet #ruby

Ruby运算符

Ruby 25 岁了!Ruby 之父说 Ruby 3 有望 3 倍提速

如何学习ruby?Ruby学习技巧分享

ruby Ruby脚本,看看是否用openssl编译了ruby