0

我有一个多态标签,想通过这个标签搜索不明确的项目。
我怎样才能返回这个葡萄实体?

class Tag < ActiveRecord::Base
  belongs_to :taggable, polymorphic: true
end

class Article < ActiveRecord::Base
  has_many :tags, as: :taggable
end

class Post < ActiveRecord::Base
  has_many :tags, as: :taggable
end

module Api
  module Entities
    class Tag < Grape::Entity
      expose :lable
      expose :taggable # HELP: , using Api::Entities::<polymorphic>
    end
end

我需要定义实体taggable来公开 Swagger aka OpenAPI 接口。

4

1 回答 1

0

在这种情况下,我们可以使用:

module Api
  module Entities
    class Tag < Grape::Entity
      expose :lable
      expose :taggable do |tabgable, options|
        if tabgable.is_a?(Article)
          API::Entities::Article.represent tabgable, options
        elsif tabgable.is_a?(Post)
          API::Entities::Post.represent tabgable, options
        end
      end
    end
  end
end
于 2019-02-12T08:21:25.947 回答