我的 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
) 中访问。如何将数组传递给视图???