Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
240 views
in Technique[技术] by (71.8m points)

Loop over Object attributes in Ruby on Rails

Is it possible to loop over an object's attributes in Rails? I have an object and rather than code up each attribute in the view, I want to output each of them in the view as there are quite a few.

I have an object called @work_profile which has many attributes, mainly boolean check box values.

Edit: I see I can use @work_profile.attributes. Any help on formatting the hash into something more user friendly would be great.

question from:https://stackoverflow.com/questions/6085661/loop-over-object-attributes-in-ruby-on-rails

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The ActiveRecord::Base.attributes() method returns a hash of all the attributes. You can use that to loop over all attributes.

@work_profile.attributes.each do |attr_name, attr_value|
  ...
end

In a view, this would give:

<% @work_profile.attributes.each do |attr_name, attr_value| %>
  <div class="work_profile_attribute">
    <%= attr_name %>: <%= attr_value %>
  </div>
<% end %>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...