我有一个 Rails 3 博客应用程序,其中有文章和类别“类别属于_to:文章”文章 has_many:类别,现在我有不同的类别,其中有很多文章,例如包含所有运动文章的运动类别,我想要在我的应用程序布局中只想在 div 上显示体育文章,请告诉我如何去做。谢谢你 ...
class Article < ActiveRecord::Base
attr_accessible :category_id, :content, :excerpt, :title, :image, :remote_image_url
mount_uploader :image, ImageUploader
belongs_to :category
validates :title, :content, :excerpt, :category_id, presence: true
validates :title, uniqueness: true
extend FriendlyId
friendly_id :title, use: [:slugged, :history]
def long_title
" #{title} - #{created_at} "
end
end