2

プロファイルを入力していないユーザーを編集ページにリダイレクトしようとしています。

ユーザー (デバイス ハンドル) とプロファイルの 2 つのテーブルがあります。

プロフィールには profile_complete という行があります

私のユーザーモデルでは、profile_complete のブール値を取り、それを返す profile_complete というメソッドを定義しようとしています。

class User < ActiveRecord::Base
  # Include default devise modules. Others available are:
  # :token_authenticatable, :confirmable,
  # :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable, :registerable,
         :recoverable, :rememberable, :trackable, :validatable

  # Setup accessible (or protected) attributes for your model
  attr_accessible :email, :password, :password_confirmation, :remember_me

  has_many :profiles, :dependent => :destroy

  def profile_complete?
    self.profile.profile_complete == true
  end
end

しかし、 profile_complete メソッドの行が何であるかを理解できないようです。他のビットは正しい場所で動作していますが、この変数を取得できません 何か助けはありますか? 乾杯 :)

4

1 に答える 1

1
def profile_complete?
    self.attributes.values.include?(nil) ? false : true
end
于 2013-01-08T16:07:31.927 に答える