トップ
>
5分で作る掲示板_source抜粋(articles_controller.rb)
class ArticlesController < ApplicationController
def index
@articles = Article.find(:all, :order => 'articles.id DESC', :limit => 10)
end
def create
Article.create(params[:article])
redirect_to :action => 'index'
end
end
投票数:6
平均点:0.00

5分で作る掲示板
|

Sample
|

5分で作る掲示板_処理の流れ
|