我已经使用做了类似的操作
render :json。这对我有用:
respond_to do |format| format.html # index.html.erb format.json { render :json => @things.to_json(:include => { :photos => { :only => [:id, :url] } }) }end
我已经使用做了类似的操作
render :json。这对我有用:
respond_to do |format| format.html # index.html.erb format.json { render :json => @things.to_json(:include => { :photos => { :only => [:id, :url] } }) }end