activerecord – 未定义的方法`find_or_create’

前端之家收集整理的这篇文章主要介绍了activerecord – 未定义的方法`find_or_create’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用以下命令在数据库中upup记录
Profile.find_or_create(fname: contact.FirstName,lname: contact.LastName,company: account.Name,title: contact.Title,user_id: contact.CreatedById,account_id: account.Id,contact_id: contact.Id,type: "contact"  )

其中Profile是一个activerecord模型

但我得到以下错误

undefined method find_or_create for Profile class

Profile.public_methods不显示find_or_create方法,但Activerecord Api定义了上述方法.

可能有什么问题?

解决方法

它的find_or_create_by和它在Rails 3中被弃用了.

使用@foo = Foo.find_by_bar(“baz”)|| Foo.create(:bar =>“baz”)

原文链接:https://www.f2er.com/ruby/267525.html

猜你在找的Ruby相关文章