文件名称:has_default_association:在ActiveRecord中创建默认的关联记录
文件大小:39KB
文件格式:ZIP
更新时间:2024-06-04 15:09:04
Ruby
HasDefaultAssociations 轻松声明ActiveRecord模型的默认关联。 用法 包括HasDefaultAssociations,然后声明应获取默认值的任何关联。 class Book < ActiveRecord :: Base include HasDefaultAssociation # Build a default author on demand belongs_to :author , class_name : "Person" has_default_association ( :author ) # Build a custom summary. has_one :summary has_default_association ( :summary ) do | book | Summary . new (
【文件预览】:
has_default_association-master
----Rakefile(589B)
----test()
--------test_helper.rb(684B)
--------has_default_association_test.rb(3KB)
--------dummy()
----README.markdown(2KB)
----Gemfile(578B)
----Gemfile.lock(3KB)
----.gitignore(140B)
----lib()
--------tasks()
--------has_default_association()
--------has_default_association.rb(2KB)
----has_default_association.gemspec(812B)
----MIT-LICENSE(1KB)