7
레일즈-컨트롤러 안에서 헬퍼를 사용하는 방법
뷰에서 도우미를 사용해야한다는 것을 알고 있지만 반환 할 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도우미에 어떻게 액세스 할 수 있습니까?