Me encantaría usar render :json
pero parece que no es tan flexible. ¿Cuál es la forma correcta de hacer esto?render: json no acepta opciones
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @things }
#This is great
format.json { render :text => @things.to_json(:include => :photos) }
#This doesn't include photos
format.json { render :json => @things, :include => :photos }
end
Gracias, esto me ayudó también. – swilliams
me ayudó también. +1 – sscirrus