1

この回答object.attribute_namesは、モデルインスタンスの属性名のリストを取得するために実行できることを示しています。

しかし、アクセス可能なすべての属性名のリストを取得する方法はありますか?

4

1 に答える 1

3

You can use accessible_attributes.

You have to provide a role, because different roles can have different accessible attributes.

If you want to have the attributes from a model instance you can use this code:

@my_model.class.accessible_attributes(:admin) # Returns array of symbols
于 2013-01-28T18:41:40.157 に答える