モデルから読み込まれたすべてのデータベース・フィールドの名前を取得
適応バージョン
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.2.1
- 7.0.0
説明
モデルから読み込まれたすべてのデータベース・フィールドの名前を取得
開発するときにどのフィールドを選択する必要があるかを判断するのに役立つ
使い方
モデル.accessed_fields()
例
class PostsController < ActionController::Base
after_action :print_accessed_fields, only: :index
def index
@posts = Post.all
end
private
def print_accessed_fields
p @posts.first.accessed_fields
end
end