activerecord – 未定义的方法`find_or_create’
发布时间:2020-12-16 21:22:26 所属栏目:百科 来源:网络整理
导读:我想使用以下命令在数据库中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
我想使用以下命令在数据库中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”) (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |