我做过类似的事情render :json
.这对我有用:
respond_to do |format| format.html # index.html.erb format.json { render :json => @things.to_json(:include => { :photos => { :only => [:id, :url] } }) } end
我想这篇文章对你有用--Rails to_json或as_json?作者:Jonathan Julian.
主要的想法是你应该避免在控制器中使用to_json.在模型中定义as_json方法要灵活得多.
例如:
在你的事物模型中
def as_json(options={}) super(:include => :photos) end
然后你可以在控制器中写一下
render :json => @things