인레일스 의뢰
1561 단어 BlogActiveRecordRails
Let me explain this with a brief example:
Suppose you have a User class for anyone registered on your site, and a Customer class for those who have actually placed orders:
class User < ActiveRecord::Base
belongs_to :customer
end
class Customer < ActiveRecord::Base
has_one :user
end
As for now, if you are in a Customer instance, you can get their User information [email protected] , or @customer.user.email . Delegation allows you to simplify this: class User < ActiveRecord::Base
belongs_to :customer
end
class Customer < ActiveRecord::Base
has_one :user
delegate :name, :name=, :email, :email=, :to => :user
end
Now you can refer to @customer.name and @customer.email to retrieve and set values for those attributes directly. Pretty nice, huh? We are now working on some code to make possible to inherit behaviour, along with polymorphic associations, so when you create a Cutomer, the User gets created as well with the data you provided when creating the customer, and so on.
So keep posted, for there will be more to come…
link:http://blog.wyeworks.com/2009/6/4/rails-delegate-method
http://railsmagazine.com/articles/4
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
게시 페이지 마무리index.php index.php body 태그의 내용을 <body> -> <body <?php body_class(); ?>>라는 식으로 재기록함으로써 class가 부여된다. 전후를 비교해 보자. 다음에 다시 쓴...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.