# == Schema Information # # Table name: todos # # id :integer not null, primary key # title :string(255) # memo :text # fixed :boolean # created_at :datetime # updated_at :datetime # class Todo < ActiveRecord::Base end
↑のモデルがあるとき、
Todo.create(title: "タイトル", fixed: true)
すると、
Todo.last.fixed? => true
元から、 fixed?
のメソッドがあります
そういう感じでしたでしょうか?
booleanには?付きメソッドが用意されているとか書いてあるドキュメントなど、
どこかにありますでしょうか?
?
は検索しにくかったので、こちらで聞きました。
よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。