3
我對軌道委託功能感到困惑。雖然我指的是apidoc 我需要更好的理解。以下是我在開源項目中找到的兩種代表類型。Rails委託 - 它是如何工作的
delegate :id, :guid, to: :person, prefix: true
delegate :last_name, :image_url, :tag_string, :bio, to: :profile
它們之間有什麼不同?使用和不使用prefix
會影響多少?謝謝。
謝謝,這似乎很清楚 – Scarface