I have a note
model. A user
has many notes
. At the moment, the notes
are ordered by date
, and then by created_at
.
我想让用户(在某一日期)自行订购这些附注。
例如,如果是目前如何展示:
Date1
note1,note2,note3
Date2
note4
Date3
note5,note6
用户可以重新排列顺序如下:
Date1
note3,note1,note2
Date2
note4
Date3
note6,note5
如何最有效地实施这种铁路? 我是否应当使用一个链接的清单? 或者说什么?
I m 采用铁路3.0.1和1.9.2。