Best way to implement sort asc or desc in rails

前端 未结 3 1809
粉色の甜心
粉色の甜心 2020-12-14 08:32

Is there an elegant way to implement a sort asc and desc actions in the views/controller in rails?

What I have is the common index.html.erb view that lists all of my

3条回答
  •  执笔经年
    2020-12-14 09:02

    here is relation of data that shows you how we access name in acceding order

    @results = Result.has_pro.ascending(:name).page(params[:page])
    

提交回复
热议问题