我正在尝试使用注入构建一个数组。我希望consents
成为一个ParticipantConsent
对象数组。
每个ParticipantConsent
对象都可以:have_many
ParticipantConsentSample
对象。
我希望sc
包含一个对象数组,这些ParticipantConsentSample
对象数组ParticipantConsent
与与Participant
.
consents = ParticipantConsent.where(:participant_id => @participant.id).all
sample_consents = consents.inject { |sc, c| sc << ParticipantConsentSample.where(:participant_consent_id => c.id).all }
目前,consents
当我检查sample_consents
. 我哪里错了?谢谢。