我有以下数据库:
class User < ActiveRecord::Base
has_and_belongs_to_many :apps
class App < ActiveRecord::Base
has_and_belongs_to_many :users
在 User ( users/show.html.haml
) 视图中,我想列出所有按当前用户拥有的应用程序排序的应用程序。
%table
%thead
%tr
%th Name
%th Available
- for app in App.order("??????")
%tr
%td= link_to app.name, app_path(app)
%td
- if @user.apps.include?(app)
%i.icon-ok
- else
%i.icon-remove
我的问题是我在 order 函数中放入什么来进行排序。