[Rails] 보기에 사람 이름을 사용하여 다형성 모델 가져오기
모델
class Contracts::Rental < ApplicationRecord
belongs_to :tenant, polymorphic: true # User, Company
belongs_to :landlord, class_name: 'Company'
belongs_to :agency, class_name: 'Company'
belongs_to :property, polymorphic: true # Properties::Building, Unit, Room
class << self
def property_types
[Properties::Building, Properties::Unit, Properties::Room]
end
end
end
I18n
네임스페이스가 있는 Rails I18n 모델 이름
n350071🇯🇵 ・ 8월 27일 ・ 1분 읽기
돕는 사람
module Contracts::RentalsHelper
# => [["Building", "Properties::Building"], ["Unit", "Properties::Unit"], ["Room", "Properties::Room"]]
def property_type_names
[Contracts::Rental.property_types.map(&:model_name).map(&:human), Contracts::Rental.property_types.map(&:to_s)].transpose
end
end
보다
<div class="field">
<%= form.label 'Property Type' %>
<%= form.select(:property_type, options_for_select(property_type_names, selected: contracts_rental.property_type)) %>
</div>
Reference
이 문제에 관하여([Rails] 보기에 사람 이름을 사용하여 다형성 모델 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/n350071/rails-getting-polymorphic-models-with-human-name-for-view-1pol텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)