Ruby on Rails中的ActiveRecord編程指南_ruby專題

來源:互聯網
上載者:User


    避免改動預設的 ActiveRecord(表的名字、主鍵,等等),除非你有一個非常好的理由(像是不受你控制的資料庫)。
    把宏風格的方法放在類別定義的前面(has_many, validates, 等等)。

    偏好 has_many :through 勝於 has_and_belongs_to_many。 使用 has_many :through 允許在 join 模型有附加的屬性及驗證

   

 # 使用 has_and_belongs_to_many  class User < ActiveRecord::Base   has_and_belongs_to_many :groups  end  class Group < ActiveRecord::Base   has_and_belongs_to_many :users  end  # 偏好方式 - using has_many :through  class User < ActiveRecord::Base   has_many :memberships   has_many :groups, through: :memberships  end  class Membership < ActiveRecord::Base   belongs_to :user   belongs_to :group  end  class Group < ActiveRecord::Base   has_many :memberships   has_many :users, through: :memberships  end

    使用新的 "sexy" validation。

    當一個慣用的驗證使用超過一次或驗證是某個正則表達映射時,建立一個慣用的 validator 檔案。

  # 差  class Person   validates :email, format: { with: /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i }  end  # 好  class EmailValidator < ActiveModel::EachValidator   def validate_each(record, attribute, value)    record.errors[attribute] << (options[:message] || 'is not a valid email') unless value =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i   end  end  class Person   validates :email, email: true  end

    所有慣用的驗證器應放在一個共用的 gem 。

    自由地使用命名的範圍(scope)。

   

 class User < ActiveRecord::Base   scope :active, -> { where(active: true) }   scope :inactive, -> { where(active: false) }   scope :with_orders, -> { joins(:orders).select('distinct(users.id)') }  end

    將命名的範圍包在 lambda 裡來惰性地初始化。

 

  # 差勁  class User < ActiveRecord::Base   scope :active, where(active: true)   scope :inactive, where(active: false)   scope :with_orders, joins(:orders).select('distinct(users.id)')  end  # 好  class User < ActiveRecord::Base   scope :active, -> { where(active: true) }   scope :inactive, -> { where(active: false) }   scope :with_orders, -> { joins(:orders).select('distinct(users.id)') }  end

    當一個由 lambda 及參數定義的範圍變得過於複雜時,更好的方式是建一個作為同樣用途的類別方法,並返回一個 ActiveRecord::Relation 對象。你也可以這麼定義出更精簡的範圍。

  class User < ActiveRecord::Base   def self.with_orders    joins(:orders).select('distinct(users.id)')   end  end

    注意 update_attribute 方法的行為。它不運行模型驗證(不同於 update_attributes )並且可能把模型狀態給搞砸。

    使用方便使用的網址。在網址顯示具描述性的模型屬性,而不只是 id 。
    有不止一種方法可以達成:

        覆寫模型的 to_param 方法。這是 Rails 用來給對象建構網址的方法。預設的實作會以字串形式返回該 id 的記錄。它可被另一個具人類可讀的屬性覆寫。

    class Person     def to_param      "#{id} #{name}".parameterize     end    end

    為了要轉換成對網址友好 (URL-friendly)的數值,字串應當調用 parameterize 。 對象的 id 要放在開頭,以便給 ActiveRecord 的 find 方法尋找。
    * 使用此 friendly_id gem。它允許藉由某些具描述性的模型屬性,而不是用 id 來建立人類可讀的網址。

  Ruby  class Person  extend FriendlyId  friendly_id :name, use: :slugged  end

    查看 gem 文檔獲得更多關於使用的資訊。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.