我为 JSON 请求返回这样的模型
def index
@categories = Category.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @categories.to_json(:include => :todos) }
end
end
现在,当我返回这个@categories 时,我想包括:todos,升序排列和属性说“位置”。有没有办法我可以做到这一点..?
像这样的东西
render json: @categories.to_json(:include => :todos, :order=>"postion, ASC")
提前致谢