2

我正在开发一个控制器,它创建一个具有多态 belongs_to 关联的模型。我现在要找到它所属的模型如下:

 def find_polymorphic_model(classes)
   classes_names = classes.map { |c| c.name.underscore + '_id' }

   params.select { |k, v| classes_names.include?(k) }.each do |name, value|
     if name =~ /(.+)_id$/
       return $1.classify.constantize.find(value)
     end
   end

  raise InvalidPolymorphicType
end

其中 classes 是关联的有效类型数组。

这种方法的问题是我必须在控制器中记住我正在创建的模型允许哪些类型。

有没有办法找到某个多态的 belongs_to 关联允许哪些类型?或者也许我做错了,我不应该让多态控制器暴露而不将它嵌套在多态资源中(在路由器中)?

我还认为 Rails 延迟加载类这一事实可能存在问题,因此为了能够找出这个问题,我必须在初始化时显式加载所有模型。

4

2 回答 2

8

对于您的验证,您不必获得所有可能的多态类型。您只需要检查指定的类型(例如,taggable_type属性的值)是否合适。你可以这样做:

# put it in the only_polymorphic_validator.rb. I guess under app/validators/. But it's up to you.
class OnlyPolymorphicValidator < ActiveModel::EachValidator
    def validate_each(record, attribute, value)
        polymorphic_type = attribute.to_s.sub('_type', '').to_sym
        specified_class = value.constantize rescue nil
        this_association = record.class.to_s.underscore.pluralize.to_sym

        unless(specified_class.reflect_on_association(this_association).options[:as] == polymorphic_type rescue false)
            record.errors[attribute] << (options[:message] || "isn't polymorphic type")
        end
    end
end

然后使用:

validates :taggable_type, only_polymorphic: true

检查是否:taggable_type包含有效的类。

于 2012-05-02T10:38:42.820 回答
0

回答得太快了,没有得到您正在查看多态关联。

对于一般关联,请使用reflect_on_all_associations

然而,对于一些多态关联,没有办法知道所有可以实现关联的类。对于其他一些人,您需要查看类型字段。

于 2012-05-02T09:51:48.893 回答