当我在名为Billing的其他模型中时,如何获取名为Applicant的实体的属性first_name。到目前为止,我能够使它工作,但返回的是对象,而不仅仅是属性。
以下是我的代码:
class Billing < ActiveRecord::Base
def self.to_csv
attributes=%w{tenant bill_type_dec total_amount created_at datetime_paid paid }
CSV.generate(headers:true) do |csv|
csv<<attributes
all.each do |bill|
csv <<attributes.map{|attr| bill.send(attr)}
end
end
end
def bill_type_dec
if bill_type!=nil
if bill_type==1
"Water"
else
"Electricity"
end
else
"#{description}"
end
end
def tenant
@applicants=Applicant.where(id: tenant_id)
@applicants.each do |appli|
"#{appli.first_name}"
end
end
end
答案 0 :(得分:1)
您可能希望使用.map
代替.each
。
您可以通过以下方式获取数组中申请人的所有姓名:
@applicants.map { |appli| appli.first_name }
#=> ['John', 'Mary']
如您所见,.each
返回数组本身。
.map
将返回执行块生成的数组。
答案 1 :(得分:1)
或使用pluck
并避免创建红宝石对象
def tenant
Applicant.where(id: tenant_id).pluck(:first_name)
end
BTW - 我看到你有一个tenant_id,如果这意味着你在Billing类上有一个belongs_to :tenant
,你会想要选择一个不同的方法名称(也许是“tenant_first_names”)。如果是这种情况,租户has_many :applicants
可以这样做:
def tenant_first_names
tenant.applicants.pluck(:first_name)
end