在我的控制器中,我将两个不同实例变量的结果合并到一个实例变量中,但出现以下错误:
undefined method `<<' for nil:NilClass
这是我的控制器代码
@conversational = InterestType.where("institution_id = ? or global = ? and category_id = ?", current_user.profile.institution_id, true, 1).first
@commercial = InterestType.where("institution_id = ? or global = ? and category_id = ?", current_user.profile.institution_id, true, 2).limit(17)
@user_interest_types << @conversational
@user_interest_types << @commercial
我怎样才能克服这个错误或者什么是获得以下结果的好方法。
- 我想先显示对话兴趣类型,然后再显示其他 17 种商业兴趣类型。