Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code in my Ruby Controller :

mastertest_controller.rb

def index

 ......

 @mastertest = connection.execute("select code_ver from mastertest")
 result_array = { sometihng }

 ......

 respond_to do |format|
  format.html # index.html.erb
  format.json { render :json => @mastertest}
  format.json { render :json => result_array}

 end

But it just allows me to access @mastertest in the view(index.html.erb). How do I pass the array to the view ???

share|improve this question

1 Answer

up vote 4 down vote accepted

instance variables in your controller are passed as instance variables in your view.

Controller:

@result_array = [something, second_something]

Then in your view:

<% @result_array.each do |item| %>
  <%= item %>
<% end %>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.