ruby-on-rails – 如果关联记录在访问时不存在,如何创建关联记录?

ruby-on-rails – 如果关联记录在访问时不存在,如何创建关联记录?,第1张

概述我该怎么做这个sudo代码? 我想阻止例如“未定义的方法zip_code for nil class”,因为我已经拥有了我们的配置文件的用户.因此,当调用user.profile时,如果它不存在,我想创建它. class User < ActiveRecord::Base... # Associations: has_one :profile # example call cur 我该怎么做这个sudo代码?
我想阻止例如“未定义的方法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 – 如果关联记录在访问时不存在,如何创建关联记录?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1274253.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存