class Post2 < ActiveRecord::Base attr_accessible :title scope :latest ,order('updated_at desc') scope :wheretitle, lambda{|value| where("title = ?", value)} end
2013年4月21日日曜日
rails scopeの例
rails try
try 配列以外の使い方
item.created_at.try(:strftime, "%Y/%m/%d %H:%M")
配列はこんな感じ
params["search"].try(:[],:locationName)
item.created_at.try(:strftime, "%Y/%m/%d %H:%M")
配列はこんな感じ
params["search"].try(:[],:locationName)
2013年4月14日日曜日
2013年4月6日土曜日
サブディレクトリにrailsを配置する場合のassets:precompile
fooサブディレクトリに配置する場合
RAILS_RELATIVE_URL_ROOT="/foo" bundle exec rake assets:precompile
RAILS_RELATIVE_URL_ROOT="/foo" bundle exec rake assets:precompile
登録:
投稿 (Atom)