有没有一种方法可以在 Rails 2.3 中使用 with_exclusive_scope 进行分页?
@albums = Album.paginate(:page => 1, :per_page => 12, :conditions => cond)
工作正常。
Album.with_exclusive_scope {find(:all, :conditions => cond)}
工作正常。
我们可以结合 with_exclusive_scope 和分页吗?
有没有一种方法可以在 Rails 2.3 中使用 with_exclusive_scope 进行分页?
@albums = Album.paginate(:page => 1, :per_page => 12, :conditions => cond)
工作正常。
Album.with_exclusive_scope {find(:all, :conditions => cond)}
工作正常。
我们可以结合 with_exclusive_scope 和分页吗?