mentre mi rendo conto che dovresti usare un aiutante all'interno di una vista, ho bisogno di un aiutante nel mio controller mentre sto costruendo un oggetto JSON per tornare.
Va un po 'così:
def xxxxx
@comments = Array.new
@c_comments.each do |comment|
@comments << {
:id => comment.id,
:content => html_format(comment.content)
}
end
render :json => @comments
end
come posso accedere al mio html_format
aiutante?