我想阻止例如“未定义的方法zip_code for nil class”,因为我已经拥有了我们的配置文件的用户.因此,当调用user.profile时,如果它不存在,我想创建它.
class User < ActiveRecord::Base... # Associations: has_one :profile # example call current_user.profile.zip_code def profile if self.profile exists <-- use super? self.profile else # create association record and return it self.build_profile.save self.profile end end...end解决方法 你可以使用after_initialize回调:
class User # .. after_initialize do self.profile ||= self.build_profile end # ..end总结
以上是内存溢出为你收集整理的ruby-on-rails – 如果关联记录在访问时不存在,如何创建关联记录?全部内容,希望文章能够帮你解决ruby-on-rails – 如果关联记录在访问时不存在,如何创建关联记录?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)