次のハッシュの配列があり、空ではないすべての電子メールを解析する必要があります。
[{:id=>"something", :first_name=>"First", :last_name=>"Name", :name=>"First Name", :email=>"first_name@gmail.com", :gender=>nil, :birthday=>nil, :profile_picture=>nil, :relation=>nil},
{...},
{}]
私はこのようにしようとしています:
- @contacts[0].each_with_index do |c, i|
- unless c[:email].blank?
%tr
%td= c[:email]
%td= check_box_tag "email_to[]", c[:email], true
しかし、私はエラーが発生しています:
An ActionView::Template::Error occurred in users#parse_data:
no implicit conversion of Symbol into Integer
それを正しく行う方法は?