1.gem ‘acts_as_list’
2.model
1 | acts_as_list |
3.controller
1 | up |
4.view
一般置顶 最末会刷新页面
上移 下移用js
1 | <%= link_to content_tag(:i, "", class: "fa fa-arrow-up"), "javascript:;", method: :post, |
1 | <script type="text/javascript"> |
ps: 必须有position字段如果是后加的 在migration文件中需要
1 | ExampleCv.order(updated_at: :desc).each.with_index(1) do |todo_item, index| |