-1
これを取得する最短/正/良い方法は何ですか?ここで、f
はモデルのフォーム別名で、customer_contract_id
とbelongs_to CustomerContact
モデルです。これを取得する最短の方法は何ですか?
<%= f.object.customer_contact.blank? ? '':f.object.customer_contact.name %>
これは私が混乱/フラストレーションのための先行投資謝罪
<%= f.object.customer_contact.name ||= '' %>
が機能していません。私は得ることができるすべてのヘルプに感謝!
Null Object Patternを使用することをお勧めします。 https://robots.thoughtbot.com/rails-refactoring-example-introduce-null-object – TheGeorgeous