我有以下模型(sort_timestamp
是日期时间):
class Post < ActiveRecord::Base
[snip attr_accessible]
acts_as_nested_set
after_create :set_sort_timestamp
private
def set_sort_timestamp
self.sort_timestamp = self.created_at
end
end
我正在使用https://github.com/collectiveidea/awesome_nested_set。此代码未设置sort_timestamp
。我究竟做错了什么?