Rails 为网页(rhtml)初始化数据 2015/11/12 15072 class HelloController < ApplicationController def there @data_hash = params[:cruncher] @cruncher = Cruncher.new(@data_hash[:crunch]) @data = @cruncher.crunch end def input @cruncher = Cruncher.new("AAA") end end