当@notification_users
包含超过 2 个数组时,这不会是错误的。
但是,它返回此错误undefined method
+' 为 nil:NilClass when
@notification_users.count.to_s` = 1
即使只有一条记录(不是数组),如何避免错误?
@notification_users.each do |user|
@users_emails += [user.email]
end
当@notification_users
包含超过 2 个数组时,这不会是错误的。
但是,它返回此错误undefined method
+' 为 nil:NilClass when
@notification_users.count.to_s` = 1
即使只有一条记录(不是数组),如何避免错误?
@notification_users.each do |user|
@users_emails += [user.email]
end