2

我的 Ruby 控制器中有以下代码:

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

但它只允许我@mastertest在 view( index.html.erb) 中访问。如何将数组传递给视图???

4

1 回答 1

8

控制器中的实例变量在视图中作为实例变量传递。

控制器:

@result_array = [something, second_something]

那么在你看来:

<% @result_array.each do |item| %>
  <%= item %>
<% end %>
于 2012-10-18T20:49:04.130 回答