class ParentResource < ActiveRecord::Base has_many :children has_many :other_children has_many :non_nested_children accepts_nested_attributes_for :children,:other_childrenend
现在,我正在使用以下函数执行此 *** 作:
def self.nested_associations reflect_on_all_associations.map(&:name).select do |association_name| association_name if method_defined?("#{association_name}_attributes=".to_sym) endend
然而,我觉得有一种烘焙方式来获得这个阵列.如果是这样,那么正确的方法是什么.
解决方法 我不确定这是’正确的方法’,但你不能这样做:ParentResource.nested_attributes_options.keys总结
以上是内存溢出为你收集整理的ruby-on-rails – 从以下各项获取关联列表:accepts_nested_attributes_for全部内容,希望文章能够帮你解决ruby-on-rails – 从以下各项获取关联列表:accepts_nested_attributes_for所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)