ruby-on-rails – Rails 4:未定义的方法`primary_key_name’

ruby-on-rails – Rails 4:未定义的方法`primary_key_name’,第1张

概述我使用Rails 4.0.0.beta收到以下错误: NoMethodError: undefined method `primary_key_name' for #<ActiveRecord::Reflection::AssociationReflection 使用Rails 3.2.x时,我没有得到异常. 我在Rails 3.2.13和Rails 4.0.0.beta上使用Ruby 1.9.3 我使用Rails 4.0.0.beta收到以下错误:

NoMethodError: undefined method `primary_key_name' for #<ActiveRecord::Reflection::AssociationReflection

使用Rails 3.2.x时,我没有得到异常.

我在Rails 3.2.13和Rails 4.0.0.beta上使用Ruby 1.9.3-p194.

问题源于以下has_many声明:

class Store < ActiveRecord::Base  has_many :relationships  has_many :customers,:through => :relationships,:source => :user,:conditions => { :relationships => { :description => "Customer" } } do      def <<(user)        proxy_association.owner.relationships.create(:description => "Customer",:user => user)      end    endend

我有以下支持课程:

class User < ActiveRecord::Base  has_one :relationship  has_one :store,:through => :relationshipendclass Relationship < ActiveRecord::Base  belongs_to :store  belongs_to :userend

我想知道如何使用Rails 4友好代码实现相同的has_many功能?

附:我知道我仍然使用旧式语法,条件哈希现在需要proc或lambda,但这些不应该导致未定义的方法异常.

解决方法 我找到了罪魁祸首,它是perfectline / valIDates_existence gem,当ActiveRecord :: VERSION :: MInor> = 1时,默认为不推荐使用的primary_key_name而不是foreign_key!我已经使用修复程序( https://github.com/perfectline/validates_existence/pull/20)提交了一个pull请求.谢谢你指着我正确的方向@Beerlington. 总结

以上是内存溢出为你收集整理的ruby-on-rails – Rails 4:未定义的方法`primary_key_name’全部内容,希望文章能够帮你解决ruby-on-rails – Rails 4:未定义的方法`primary_key_name’所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存