7
Rails-如何在控制器内部使用助手
虽然我意识到您应该在视图内使用一个帮助器,但是在构建JSON对象以返回时,我的控制器中需要一个帮助器。 它有点像这样: def xxxxx @comments = Array.new @c_comments.each do |comment| @comments << { :id => comment.id, :content => html_format(comment.content) } end render :json => @comments end 如何获得我的html_format助手?